How to use javascript with ASP.net
-
I am developing a web page which has a set of check box and checkboxlist controls. Some operations need to be performed on selecting an item of the checkbox list and when the checkbox is checked. When this is done as a simple ASP page, there is a time delay. Could some one help me with some tips on how javascript can be used with ASP.net
-
I am developing a web page which has a set of check box and checkboxlist controls. Some operations need to be performed on selecting an item of the checkbox list and when the checkbox is checked. When this is done as a simple ASP page, there is a time delay. Could some one help me with some tips on how javascript can be used with ASP.net
Start here[^]. It really is quite straightforward: use it just as you might use it with a classic ASP site or any other language.
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me
-
Start here[^]. It really is quite straightforward: use it just as you might use it with a classic ASP site or any other language.
"If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." Red Adair. nils illegitimus carborundum me, me, me
-
I am developing a web page which has a set of check box and checkboxlist controls. Some operations need to be performed on selecting an item of the checkbox list and when the checkbox is checked. When this is done as a simple ASP page, there is a time delay. Could some one help me with some tips on how javascript can be used with ASP.net
you have to know what problem would client scripting solve! if Processing need to be check at server and client don't involve in it, you have too use ajax for more performance , but if you need only the last modified data, do the job on client side, and set the changes to server!
-
I am developing a web page which has a set of check box and checkboxlist controls. Some operations need to be performed on selecting an item of the checkbox list and when the checkbox is checked. When this is done as a simple ASP page, there is a time delay. Could some one help me with some tips on how javascript can be used with ASP.net
You can use javascript very well in asp.net apps... Start here http://www.zdnetasia.com/using-javascript-for-faster-asp-net-39190821.htm[^] as an good example... Happy Coding...