c*o 发帖数: 70 | 1 how to pass parameters from Javascript to .net such as C# code behind? For
example, there is a dynamic mouse move on and pop up menu implemented in
Javascript, once a menu item is selected, how to pass this menu item's value
to the C# code running on server? I only know this can be solved by using
embedded ASP tags <% ... %>.
Similar question, once we want to let the user upload file to the server, we
can use the HTML control to let users select a file name to
upload. How can we pas | L*******r 发帖数: 1011 | 2 "Hidden" + post. use javascript to change the value of the hidden field and
then post it to server.
ASP .Net is based on that. so you can implement your own web controler to
handle these things.
using
【在 c*o 的大作中提到】 : how to pass parameters from Javascript to .net such as C# code behind? For : example, there is a dynamic mouse move on and pop up menu implemented in : Javascript, once a menu item is selected, how to pass this menu item's value : to the C# code running on server? I only know this can be solved by using : embedded ASP tags <% ... %>. : Similar question, once we want to let the user upload file to the server, we : can use the HTML control to let users select a file name to : upload. How can we pas
|
|