How to convert a complete standalone application(windows forms) to an ASP.Net application?
What is view state. How is it implemented?
Latest Answer: View state is mainly used in order to store the data inbetween the postbacks. To clearly explain if you complete the registration screen you go to the next page and when you come back you could see the details that you have filled in the text box or dropdown ...
How to fill data in the dropdownlist from database
Latest Answer: DropDownList1.Items.Add("India");DropDownList1.Items.Add("Pakistan");DropDownList1.Items.Add("Srilanka"); ...
What is the difference between reference and instance?
When you already have database why do we use XML?
What is the key difference between ASP.Net 2.0 and ASP.Net 3.5 Version.
What is the difference between Session.abondon And session.End
Latest Answer: Session.Abandon-->Cancels the Current Session.To programmatically end current users session (for any reason) we can use Session.Abandon method.Session.End-->A session ends if a user has not requested or refreshed a page in the application for a ...
How to create a template based on SCORM?
Latest Answer: You can use mine as a basis. It is Javascript and DHTML based, and available here for free download:http://thedesignspace.net/MT2archives/000351.html There is a complete tutorial for how to use all the features.Ellen ...
How to customize the port number in ASP.NET 2.0 for running ASP.NET web application?
What is the purpose of App_code folder in ASP.NET 2.0?
Latest Answer: The App_Code folder is meant to store your classes, .wsdl files, and typed datasets. Any of these items stored in this folder are then automatically available to all the pages within your solution. The good thing about the App_Code folder is that when ...
View page << Previous 1 2 3 [4] 5 6 7 8 9 10 Next >>

Go Top