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 ...

Sunday, 22 July 2012

Authentication & Authorization in ASP.Net

Authentication & Authorization in ASP.Net This is a new security concept provided with asp.net.When client request comes to the web server, then web server will attach one user account for the anonymous user, based on which resources will be accessible. This is called as impersonation. By default IUSR_MACHINENAME is the account attached to the anonymous user. When you want to implement current security for the web...
Read more ...

Saturday, 21 July 2012

Caching in ASP.Net

   Caching in ASP.Net When you store most frequently used data on to the temporary storage and providing to different clients request, then it is called as caching. The main advantage of caching is to improve the performance of the web server by reducing the processing time. When you are expecting more no. of requests to a web page within a particular time interval, also the web page is having database interaction...
Read more ...

Friday, 20 July 2012

Technical Support Interview Questions and Answers

Desktop & Technical Support Interview Questions and Answ...
Read more ...

Tuesday, 17 July 2012

ASP.Net Page Execution

ASP.Net Page Execution ·     Asp.net webpage is a class inherited from page class…. ·     It will be compiled into dll file. ·     An object of -----.aspx class will be created, this will produce output to client browser. ·     The object will be destroying after providing output to client browser. The dll file will be maintained by server. ·     When the...
Read more ...

Sunday, 15 July 2012

.Net Fundamentals & Architecture

                                      .NET fundamentals.NET is a platform to create distributed applications The Core Purpose of .NET is to connect different devices,systems,information and people..Net takes the best of XML to leverage the speed...
Read more ...