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

What is the difference between “Web farms” and “Web garden”?
What is the difference between “Web farms” and “Web garden”? “Web farms” are used to have some redundancy to minimize failures. It consists of two or more web server of the same configuration and they stream the same kind of contents. When any request comes there is switching / routing logic which...
2007-10-24, 5791👍, 0💬

What are the steps to create a windows service in VB.NET
What are the steps to create a windows service in VB.NET? Windows Services are long-running executable applications that run in its own Windows session, which then has the ability to start automatically when the computer boots and also can be manually paused, stopped or even restarted. Following are...
2007-10-24, 4749👍, 0💬

How to use a checkbox in a datagrid
How can I track event in checkbox which is one of the columns of a datagrid ? Note: - This is normally asked when the interviewer want to see that have you really worked practically on a project. Following are the steps to be done :- 1. In ASPX page you have to add Itemtemplate tag in datagrid. &...
2007-10-24, 5012👍, 0💬

If cookies are not enabled at browser end does form Authentication work
If cookies are not enabled at browser end does form Authentication work? No, it does not work.
2007-10-24, 7711👍, 0💬

How do I sign out in forms authentication
How do I sign out in forms authentication ? FormsAuthentication.Signout()
2007-10-24, 4807👍, 0💬

Can you explain Forms authentication in detail
Can you explain Forms authentication in detail ? In old ASP if you where said to create a login page and do authentication you have to do hell lot of custom coding. But now in ASP.NET that’s made easy by introducing Forms authentication. So let’s see in detail what form authentication is. Forms auth...
2007-10-24, 6531👍, 0💬

Explain the differences between Server-side and Clientside code
Explain the differences between Server-side and Clientside code? Server side code is executed at the server side on IIS in ASP.NET framework, while client side code is executed on the browser.
2007-10-24, 4650👍, 0💬

What is the use of attribute
What is the use of attribute ? This attribute works like a compatibility option. As mentioned before ASP worked in STA model and ASP.NET works in MTA model, but what if your ASP.NET application is using a VB COM component. In order that VB COM runs properly in ASP.NET threading model we have to set ...
2007-10-24, 5124👍, 0💬

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, 4847👍, 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, 5040👍, 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, 4759👍, 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, 4729👍, 0💬

How can we kill a user session
How can we kill a user session ? Session.abandon
2007-10-24, 4724👍, 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, 7942👍, 0💬

How do we enable tracing
How do we enable tracing ? &lt;%@ Page Trace="true" %>
2007-10-24, 4685👍, 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, 4743👍, 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, 4978👍, 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, 5485👍, 0💬

How to disable client side script in validators
How to disable client side script in validators? Set EnableClientScript to false.
2007-10-24, 5096👍, 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, 7204👍, 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, 5332👍, 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, 5552👍, 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, 5509👍, 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, 5285👍, 0💬

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