1.) What are the server controls in ASP.NET ?
ASP.NET server controls are components that run on the server and encapsulate user interface and related functionality .They are used in ASP.NET code behind and pages.
2.) How can differentiate web server controls and custom controls ?
Web user controls:-
3.) What is difference between asp session and asp.net session ? ASP.NET server controls are components that run on the server and encapsulate user interface and related functionality .They are used in ASP.NET code behind and pages.
2.) How can differentiate web server controls and custom controls ?
Web user controls:-
- It is easier to create.
- It is good for static layout.
- It provide limited support for consumers who use a visual design tool.
- We can't be added it to the toolbox in visual studio.
- A separate copy of the control is required in any application.
- It is harder to create.
- It is good for dynamic layout.
- It provide full visual design tool support for consumers.
- It can be added to the toolbox in visual studio.
- In the global assembly cache ,only a single copy of the control is required.
- ASP.NET session supports cookie less session and it can 'span' across multiple servers.
- ASP session is not like that.
4.) What method is used to explicitly kill users session ?
We use Abandon() method for this.
5.) What are the different ways we would consider sending data across page in asp.net ?
- Properties (public)
- Session
More Details...
7.) What are the two type of state management technique used in .NET ?
There are two state management technique used in .net as given below:-
1.) Server based state management
- Application state
- Session state
- Data based support
2.) Client based state management
- View state
- Cookies
- Hidden Fields
- Query strings
Read More Details...
9.) How to create local or browser or non persistent cookie in asp.net application ?
Read More Details...
10.) What is different between server side code and client side code (script) ?
The server side codes are processed at the server end and send the result to the client end, Client side codes (scripts) are executed only at the client end.
11.) How can you deploy your asp.net application on server ?
Read More Details...
12.) How do implement AutoPostBack with a text box ?
Set AutoPostBack properties = True;
0 comments:
Post a Comment