Most Viewed

Most Viewed

Saturday, 11 August 2012

C#4.0 Dynamic Vs Var keyword

C#4.0 Dynamic Vs Var keyword In C # 4.0, There is a new keyword called dynamic, We can use ia as any datatype like float,int,string, double etc. Actually we can implement the samething using Var keyword also, But there is a different behavior. If...
Read more ...

Generate Random password using C#.Net

 Generating Random password in C#.Net I create a lot of code to C # with a random password to see. NET. But I feel the following code is very simple to create. Maybe I'm wrong, but I have my solution to this problem. If you want a better way...
Read more ...

Thursday, 2 August 2012

OutProcess Sessions

Enhancement of session state in ASP.NET 1.           ASP.NET supports out process session, this is also called as process independent sessions. 2.           ASP.NET...
Read more ...

State Management in ASP.Net

State Management The connection between the client and the server will be closed once the response is returned to the client. This is called as stateless nature of the web. When the web server maintains the information about the client, then it is called as state management concept. 1.                       Submission...
Read more ...