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?
50
What are ASP.NET Web Forms? How is this technology
different than what is available though ASP (1.0-3.0)?
87
asp.net interview questions
28
Can the action attribute of a server-side
tag be set to a value and if not how can you possibly pass
data from a form page to a subsequent page?
92
what is the Difference between Dim Object as object AND dim
obj as myform?
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.