I am trying to implement sorting facility from client side
code in GridView Control.
So how can I fill up an Array inside client side code
(using JavaScript), i want to assign my DataSet object
declared and filled up on Server side(in code behind) to
the array (on client side)
if i wanna deploy my asp.net project to the production
server and situation is that i m still not compiled my
project i have as-is on my development side now on
production server we dont have a visual studio now what
kind of settings i need to be to do in
webconfig /machine.config file to deploy my project and in
iis too....
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.
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
I have a component with 3 parameter and deployed to client
side now i changed my dll method which takes 4 parameter.How
can i deploy this without affecting the clent?s code ?