Most Viewed

Most Viewed

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

Conditional and Obsolete keyword in C#.Net

Conditional and Obsolete keyword in C#.Net The attribute Obsolete is used to mark types and members of types that should no longer be used. The Conditional attribute is an alias for ConditionalAttribute, and can be applied to a method or an attribute class Demonstrate Conditional and Obsolete keyword in C#.Net #define DEBUG using System; using System.Diagnostics; class Class1 {           ...
Read more ...

Example on Delegate, Multicast delegate, Events in C#.Net

Demonstrates delegate in C#.Net using System; class Class1 {     public delegate int Calc(int a,int b);               static int  Multi(int val1,int val2)               {return val1*val2;}              ...
Read more ...

C#.Net Remoting application

Steps for C#.Net Remoting application : Create service first Create server  object by ref. service create client  code. Create Service first – new project à class library à Create a folder  : c:\remotingdemo and store class library , client and server in this folder. New Project à Class Library à SimpleRemotingLibrary Location : c:\>remotingDemo using System; using System.Collections.Generic; using...
Read more ...

Event Bubbling in .Net

Event Bubbling in C#.Net the repeater can do more than just displaying data. it can contain some other controls in the itemtemplate. all these controls are called child controls to the parent control the repeater (or anyother container) when the child raises an event the parent can handle that event which is called eventbubbling. datalist,datagrid also support event bubbling. this is a better approach because its difficult...
Read more ...

Delegates in C#.Net

Delegates in C#.Net A delegate is a typesafe function pointer It points to the methods(or functions )  which match to its signature A delegate is typesafe becoz it will accept the functions with same datatypes as of its own arguments if the parametres does not match it throws an error Advantages: 1. It can point any method that matches..so we can have muticast delegates 2.which method is invoked is...
Read more ...