Name the application folders present in asp.net 2.0?
24
When we are requesting a new URL through Response.Redirect()
the new page wil open on the new browser window or it wil
open in the same window? If we use Server.Transfer() what
wil happen?
50
Am not able to move the controls on the form freely in
asp.net 3.5 even though I selected the position as relative
or absolute for those controls. What should I do to overcome
this?
38
Does JITting occur per-assembly or per-method? How does this
affect the working set?
36
Can we use the java script code in .Net Code behind?
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.