Popular Posts

Friday, August 31, 2012

Hello World With Agatha

A WCF framework that supports the Request and Response scenario with base classes and all other great stuff....

Hello World With Agatha:

'via Blog this'

Tuesday, August 28, 2012

Model Binding To A List

Submitting multiple (multiline) to controller from view - MVC

here is the trick ->

Model Binding To A List: "Non-Sequential Indices"

'via Blog this'

Wednesday, August 1, 2012

Supporting multiple submit buttons on an ASP.NET MVC view

Multiple Submit buttons within the same MVC page ...

Great one ...

Supporting multiple submit buttons on an ASP.NET MVC view:

'via Blog this'

Session variables in ASP.NET MVC - Stack Overflow

Singleton session wrapper around Session Object .... Nice but possibly not thread safe? [Serializable] public sealed class SessionSingleton { #region Singleton private const string SESSION_SINGLETON_NAME = "Singleton_502E69E5-668B-E011-951F-00155DF26207"; private SessionSingleton() { } public static SessionSingleton Current { get { if ( HttpContext.Current.Session[SESSION_SINGLETON_NAME] == null ) { HttpContext.Current.Session[SESSION_SINGLETON_NAME] = new SessionSingleton(); } return HttpContext.Current.Session[SESSION_SINGLETON_NAME] as SessionSingleton; } } #endregion public string SessionVariable { get; set; } public string SessionVariable2 { get; set; } // ... }

Session variables in ASP.NET MVC - Stack Overflow:

'via Blog this'