<< < 27 28 29 30 31 32 33 34 35 36 37 > >>   Sort: Rank

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, 4865👍, 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, 4515👍, 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, 5279👍, 0💬

How can we format data inside DataGrid
How can we format data inside DataGrid? Use the DataFormatString property.
2007-10-24, 6970👍, 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, 6937👍, 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, 7506👍, 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, 5461👍, 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, 5544👍, 0💬

Forms authentication
Forms authentication Forms authentication provides you with a way to handle authentication using your own custom logic with in an ASP.NET application. The following applies if you choose forms authentication. ? When a user requests a page for the application, ASP.NET checks for the presence of a spe...
2007-10-24, 4607👍, 0💬

Passport authentication
Passport authentication Passport authentication lets you to use Microsoft’s passport service to authenticate users of your application. If your users have signed up with passport, and you configure the authentication mode of the application to the passport authentication, all authentication duties a...
2007-10-24, 4773👍, 0💬

Windows authentication and IIS
Windows authentication and IIS If you select windows authentication for your ASP.NET application, you also have to configure authentication within IIS. This is because IIS provides Windows authentication. IIS gives you a choice for four different authentication methods: Anonymous,basic,digest and wi...
2007-10-24, 4715👍, 0💬

What are the various ways of authentication techniques in ASP.NET
What are the various ways of authentication techniques in ASP.NET? Selecting an authentication provider is as simple as making an entry in the web.config file for the application. You can use one of these entries to select the corresponding built in authentication provider: ã &lt;authentication...
2007-10-24, 4692👍, 0💬

Can you explain in brief how the ASP.NET authentication process works
Can you explain in brief how the ASP.NET authentication process works? ASP.NET does not run by itself, it runs inside the process of IIS. So there are two authentication layers which exist in ASP.NET system. First authentication happens at the IIS level and then at the ASP.NET level depending on the...
2007-10-24, 6668👍, 0💬

What is impersonation in ASP.NET
What is impersonation in ASP.NET ? By default, ASP.NET executes in the security context of a restricted user account on the local machine. Sometimes you need to access network resources such as a file on a shared drive, which requires additional permissions. One way to overcome this restriction is t...
2007-10-24, 5049👍, 0💬

What is the difference between Authentication and authorization
What is the difference between Authentication and authorization? This can be a tricky question. These two concepts seem altogether similar but there is wide range of difference. Authentication is verifying the identity of a user and authorization is process where we check does this identity have acc...
2007-10-24, 6441👍, 0💬

What is the difference between Server.Transfer and response.Redirect
What is the difference between Server.Transfer and response.Redirect ? Following are the major differences between them:- ? Response.Redirect sends message to the browser saying it to move to some different page, while server.transfer does not send any message to the browser but rather redirects the...
2007-10-24, 4719👍, 0💬

What is a SESSION and APPLICATION object
What is a SESSION and APPLICATION object ? Session object store information between HTTP requests for a particular user, while application object are global across users.
2007-10-24, 4982👍, 0💬

What is the difference between “Web.config” and “Machine.Config”
What is the difference between “Web.config” and “Machine.Config” ? “Web.config” files apply settings to each web application, while “Machine.config” file apply settings to all ASP.NET applications.
2007-10-24, 4924👍, 0💬

What’s the use of “GLOBAL.ASAX” file
What’s the use of “GLOBAL.ASAX” file ? It allows to executing ASP.NET application level events and setting application-level variables.
2007-10-24, 5301👍, 0💬

How can you enable automatic paging in DataGrid
How can you enable automatic paging in DataGrid ? Following are the points to be done in order to enable paging in Datagrid :- ? Set the “AllowPaging” to true. ? In PageIndexChanged event set the current pageindex clicked. Note:- The answers are very short, if you have implemented practically its ju...
2007-10-24, 7482👍, 0💬

Can you explain what is “AutoPostBack” feature in ASP.NET
Can you explain what is “AutoPostBack” feature in ASP.NET ? If we want the control to automatically postback in case of any event, we will need to check this attribute as true. Example on a ComboBox change we need to send the event immediately to the server side then set the “AutoPostBack” attribut...
2007-10-24, 7182👍, 0💬

How many types of validation controls are provided by ASP.NET
How many types of validation controls are provided by ASP.NET ? There are six main types of validation controls :- RequiredFieldValidator It checks whether the control have any value. It's used when you want the control should not be empty. RangeValidator It checks if the value in validated control ...
2007-10-24, 6699👍, 0💬

How can we create custom controls in ASP.NET
How can we create custom controls in ASP.NET ? User controls are created using .ASCX in ASP.NET. After .ASCX file is created you need to two things in order that the ASCX can be used in project:. ? Register the ASCX control in page using the ? Now to use the above accounting footer in page you can u...
2007-10-24, 5100👍, 0💬

What is the use of @ OutputCache directive in ASP.NET
What is the use of @ OutputCache directive in ASP.NET? It is basically used for caching. See more for Caching chapter.
2007-10-24, 4771👍, 0💬

<< < 27 28 29 30 31 32 33 34 35 36 37 > >>   Sort: Rank