Explain which is best suited place in the Application Start
and Session_Start subroutines with an example?
Answer Posted / rana rashid
Best suited place is Global.aspx..
in that file you put your application start and
session_start subroutines....
these initilize on the start of your application..
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are session objects?
Define the steps to set up validation control.
Explain the boxing and unboxing concept in .net?
When cookie will expire?
How to count the number of objects present in a web page? How to count the number of radio buttons in a web page?
What is base class of button control in .net?
How to use a Master Database in Asp.net?
Are cookies client side or server side?
I’m having some trouble with cas. How can I diagnose my problem?
What are ASHX files?
What is new asp.net core?
When you use Ajax controls in the ASP.NET application?
How can you ensure a permanent cookie?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
How does exception management works in ASP.NET?