Categorie
Archivi
- aprile 2018
- marzo 2018
- gennaio 2018
- dicembre 2017
- novembre 2017
- ottobre 2017
- settembre 2017
- agosto 2017
- luglio 2017
- giugno 2017
- maggio 2017
- aprile 2017
- marzo 2017
- febbraio 2017
- dicembre 2016
- novembre 2016
- ottobre 2016
- settembre 2016
- agosto 2016
- aprile 2016
- marzo 2016
- febbraio 2016
- gennaio 2016
- dicembre 2015
- novembre 2015
- ottobre 2015
- settembre 2015
- dicembre 2014
- novembre 2014
- ottobre 2014
- settembre 2014
- agosto 2014
- luglio 2014
- giugno 2014
- maggio 2014
- aprile 2014
- marzo 2014
- febbraio 2014
- gennaio 2014
- novembre 2013
- ottobre 2013
- settembre 2013
- agosto 2013
- luglio 2013
- agosto 2012
- luglio 2012
- giugno 2012
- aprile 2012
- marzo 2012
- febbraio 2012
- gennaio 2012
- dicembre 2011
- novembre 2011
- ottobre 2011
- settembre 2011
- agosto 2011
- luglio 2011
Aggiornamenti Twitter
- Enable Chrome Desktop to Prompt #PWA Add to Homescreen youtu.be/hnMyszjVqWU 2 years ago
- RT @FiordiRisorse: Agile non è un metodo, ma un mindset. I 12 principi dell' Agile e come possononessere trasferiti in un'azienda tradizion… 2 years ago
- RT @agilebusinessda: Sì parla di SCRUM con @AndreaRegoli #ABD18 #agilebusinessday #agileinvenice #agileconference https://t.co/ev0HKNv5ar 2 years ago
- Increase your productivity: Getting Things Done #GTD with #Trello or #Asana and #zapier or #IFTTT automation… twitter.com/i/web/status/9… 3 years ago
- List of #Management and #Leadership #Books part 2 andrearegoli.wordpress.com/2018/03/19/lis… via @andrearegoli 3 years ago
- #Trello vs #Asana: what is the better? andrearegoli.wordpress.com/2018/01/16/tre… via @wordpressdotcom 3 years ago
- The best result comes from everyone in the #group doing what's best for himself AND the group andrearegoli.wordpress.com/2018/01/08/the… via @andrearegoli 3 years ago
- #DesignThinking andrearegoli.wordpress.com/2017/12/20/des… @andrearegoli 3 years ago
Tags
- AD
- ajax
- Animation
- App
- Asp.Net
- binding
- book
- books
- Bootstrap
- Cast
- child
- Column
- ComboBox
- convert
- css
- CurrentThread
- delete
- EF6
- EntityValidationErrors
- exam
- fancybox
- file
- Filename
- Font
- game
- generic handler
- icon
- Identity 2.0
- item
- Jira
- join
- jquery
- jquery plugin
- jquery validation
- Json
- Leadership
- lightbox
- linq
- Listbox
- ListView
- live
- modal
- MVC
- pass value
- pmbok
- pmi
- pmp
- post
- project management
- recursive
- REST
- Routing
- Row
- script runner
- SCRUM
- Silverlight
- SQL
- status
- thread
- tr
- update
- url
- user story
- validation
- Visual studio
- WCF
- WebClient
- Windows 8
- windows phone
- WinRT
- wp7
- WP8
- WPF
- xml
Archivi categoria: MVC
POST Ajax and redirect file response to the browser
Yesterday a collegue of mine had a problem: How post an ajax form and redirect the file result to the browser. If you post a form to an handler that response with a file the result will be downloaded by … Continua a leggere
Serializing Entity Framework classes with JSON (Web API) without relationship
How many times have you ever tried to serialize an object of a type generated by EntityFramework. As you know with Entity Framework the relationship between to tables are made using virtual IEnumerable. As just you try to access to … Continua a leggere
Pubblicato in .Net, Asp.Net, c#, Entity Framework, MVC
Contrassegnato Json, serialize
Lascia un commento
MVC Remove error from MiodelState
If you do client side validation, you’ll know that hiding some controller will remove the validation for that controller. But if you need to validate it on server side, the validation will act also in some controller hidded by javascript. … Continua a leggere
ASP.Net MVC client side validation with Bootstrap Select Picker
On my bootstrap template I use bootstrap select picker Using this plugin in DropDownList the validation client side not works. I found a great solution on stackoverflow and I report it here to share with you Add the class selectpicker … Continua a leggere
Pubblicato in jquery, MVC
Contrassegnato Bootstrap, client side, selectpicker, validation
Lascia un commento
Inline if MVC Razor inside style or class attributes
There is no way to use inline if inside Razor,the only way is use Html.Row helper like this
No password Hasing MVC Identity 2.0
I know that all passwords must be hashed on a DB and I do it in all my personal projects; but unfortunately some times the customers ask me to have the clear users password. That’s why in some company the … Continua a leggere
Pubblicato in Asp.Net, MVC
Contrassegnato hash, Identity 2.0, password, user identity
Lascia un commento
HttpContext GetOwinContext() outside Controller
In AccountController you can find this to access to UserManager If you need to access to ApplicationRoleManager, ApplicationSignInManager or ApplicationDbContext This is true if you write this code inside Controller because HttpContext is a property of Controller class: If you … Continua a leggere
Pubblicato in Asp.Net, MVC
Contrassegnato DbContext, GetOwinContext, HttpContext, RoleManager, SignInManager, UserManager
1 commento
MVC Identity 2.0 Oracle ORA-12704: character set mismatch
By default when we create a MVC project the template will add in our web.config a connetion string to a SQL server file that will be created in app_data. If we want to work with Oracle database you need to … Continua a leggere
Pubblicato in MVC
Contrassegnato character set mismatch, Identity, Identity 2.0, ORA-12704, Oracle
Lascia un commento
MVC Prevent login when EmailConfirmed is false
In the previous article I explained how to configure MVC to send a verification mail after a user registration. MVC Configure to send verification email after registeration MVC by default permit a user to log in your site also if … Continua a leggere
Pubblicato in .Net, c#, MVC
Contrassegnato confirmed, EmailConfirmed, login, MVC, prevent
2 commenti
MVC Configure to send verification email after registeration
MVC 5 could be configured to send verification mail, and I suggest it! To do this you need to configure the EMailService, there are many many example that use SendGrid but none if you wanna use your own smtp server. … Continua a leggere