asp.net questions and answers
Whether azure supports all OS?
No it supports Windows 7, Vista, Windows 2008 server.
What is the difference between document.getElementById('<%= btnMakeUpdate.ClientID %>').name AND document.getElementById('<%= btnMakeUpdate.UniqueID %>')?
There is no difference. Both will use control's id seperated using $ sign.
MaintainScrollPositionOnPostback will work in Ajax Postback.
NOTE: This is objective type question, Please click question title for correct answer.
You are going to deploy a website on live server. Which build option you will select while building the website? 1. Debug 2. Release
You should select Release .
Your site is deployed on testing server and you make some change in web.config file stored on the server. What will happen to the user's who are accessing site at that time?
When you make any change in web.config file then IIS restarts automatically so all the session and application variables get reset. This can affect user drastically as their session is lost.
Can you add title to browser history point?
Yes, we can add.
Can you hash state information of URL ?
NOTE: This is objective type question, Please click question title for correct answer.
Can you have multiple form tags in a page?
YES.
Page can have multiple form tags but only one of them can contain runat=”server” atrribute at a time.