< 1 2 3 4 > >>   Sort: Rank

ASP used STA threading model, what is the threading model used for ASP.NET
ASP used STA threading model, what is the threading model used for ASP.NET ? ASP.NET uses MTA threading model.
2007-10-24, 4823👍, 0💬

What are different IIS isolation levels
What are different IIS isolation levels? IIS has three level of isolation:- LOW (IIS process):- In this main IIS process and ASP.NET application run in same process. So if any one crashes the other is also affected. Example let’s say (well this is not possible) I have hosted yahoo, hotmail .amazon a...
2007-10-24, 5028👍, 0💬

How do I send email message from ASP.NET
How do I send email message from ASP.NET ? ASP.NET provides two namespaces System.WEB.mailmessage classand System.Web.Mail.Smtpmail class. Just a small homework create a Asp.NET project.
2007-10-24, 4747👍, 0💬

How do you upload a file in ASP.NET
How do you upload a file in ASP.NET ? use System.Web.HttpPostedFile class.
2007-10-24, 4705👍, 0💬

How can we kill a user session
How can we kill a user session ? Session.abandon
2007-10-24, 4707👍, 0💬

What exactly happens when ASPX page is requested from Browser
What exactly happens when ASPX page is requested from Browser? Note: - Here the interviewer is expecting complete flow of how an ASPX page is processed with respect to IIS and ASP.NET engine. Following are the steps which occur when we request a ASPX page :- 1. The browser sends the request to the w...
2007-10-24, 7909👍, 0💬

How do we enable tracing
How do we enable tracing ? &lt;%@ Page Trace="true" %>
2007-10-24, 4670👍, 0💬

What is Tracing in ASP.NET
What is Tracing in ASP.NET ? Tracing allows us to view how the code was executed in detail.
2007-10-24, 4725👍, 0💬

You find that one of your validation is very complicated and does not fit in any of the validators, what will you do
You find that one of your validation is very complicated and does not fit in any of the validators, what will you do ? Best is to go for CustomValidators. Below is a sample code for a custom validator which checks that a textbox should not have zero value &lt;asp:CustomValidator id="CustomValida...
2007-10-24, 4964👍, 0💬

How can I show the entire validation error message in a message box on the client side
How can I show the entire validation error message in a message box on the client side? In validation summary set “ShowMessageBox” to true.
2007-10-24, 5475👍, 0💬

How to disable client side script in validators
How to disable client side script in validators? Set EnableClientScript to false.
2007-10-24, 5088👍, 0💬

If client side validation is enabled in your Web page, does that mean server side code is not run
If client side validation is enabled in your Web page, does that mean server side code is not run? When client side validation is enabled server emit’s JavaScript code for the custom validators. But note that does not mean that server side checks on custom validators do not execute. It does this red...
2007-10-24, 7175👍, 0💬

How can we check if all the validation control are valid and proper
How can we check if all the validation control are valid and proper ? Using the Page.IsValid() property you can check whether all the validation are done.
2007-10-24, 5317👍, 0💬

How can we force all the validation control to run
How can we force all the validation control to run ? Page.Validate
2007-10-24, 5541👍, 0💬

Do session use cookies
How can we make session to not to use cookies ? Left to the user, you will enjoy to find this answer.
2007-10-24, 5494👍, 0💬

What order they are triggered
What order they are triggered ? They're triggered in the following order: Application_BeginRequest Application_AuthenticateReques tApplication_AuthorizeRequest Application_ResolveRequestCach eApplication_AcquireRequestStat eApplication_PreRequestHandlerE xecuteApplication_PreSendRequestHead ersAppli...
2007-10-24, 5275👍, 0💬

What are major events in GLOBAL.ASAX file
What are major events in GLOBAL.ASAX file ? Application_PostRequestHandler Execute:Fired when the ASP.NET page framework has finished executing an event handler. Applcation_PreSendRequestHeade rs:Fired before the ASP.NET page framework sends HTTP headers to a requesting client (browser). Application...
2007-10-24, 4853👍, 0💬

Difference between ASP and ASP.NET
Difference between ASP and ASP.NET? ASP.NET new feature supports are as follows :- Better Language Support ? New ADO.NET Concepts have been implemented. ? ASP.NET supports full language (C#, VB.NET, C++) and not simple scripting like VBSCRIPT.. Better controls than ASP ? ASP.NET covers large set’s o...
2007-10-24, 4490👍, 0💬

How to decide on the design consideration to take a Datagrid
How to decide on the design consideration to take a Datagrid, datalist or repeater ? Many make a blind choice of choosing datagrid directly, but that's not the right way. Datagrid provides ability to allow the end-user to sort, page, and edit its data. But it comes at a cost of speed. Second the dis...
2007-10-24, 5267👍, 0💬

How can we format data inside DataGrid
How can we format data inside DataGrid? Use the DataFormatString property.
2007-10-24, 6954👍, 0💬

What is the method to customize columns in DataGrid
What is the method to customize columns in DataGrid? Use the template column.
2007-10-24, 6913👍, 0💬

From performance point of view how do they rate
From performance point of view how do they rate ? Repeater is fastest followed by Datalist and finally datagrid.
2007-10-24, 7486👍, 0💬

What’s difference between Datagrid, Datalist and repeater
What’s difference between Datagrid, Datalist and repeater? WA Datagrid, Datalist and Repeater are all ASP.NET data Web controls. They have many things in common like DataSource Property, DataBind Method ItemDataBound and ItemCreated. When you assign the DataSource Property of a Datagrid to a DataSet...
2007-10-24, 5449👍, 0💬

How does authorization work in ASP.NET
How does authorization work in ASP.NET? ASP.NET impersonation is controlled by entries in the applications web.config file. The default setting is “no impersonation”. You can explicitly specify that ASP.NET shouldn’t use impersonation by including the following code in the file &lt;identity imp...
2007-10-24, 5534👍, 0💬

< 1 2 3 4 > >>   Sort: Rank