Javascript Problem
-
Hi I have one confusion if u have solution pls reply me. I have one function in javascript.This function returns value. How to use this return value in aspx page? function call() { retrun val; } How to use this value in my aspx page? I call javascript function like:ddl_category,attributes.add("onchange","call();") I want a value from function in my aspx page. Pls help me Thanks monika
-
Hi I have one confusion if u have solution pls reply me. I have one function in javascript.This function returns value. How to use this return value in aspx page? function call() { retrun val; } How to use this value in my aspx page? I call javascript function like:ddl_category,attributes.add("onchange","call();") I want a value from function in my aspx page. Pls help me Thanks monika
-
Hi I have one confusion if u have solution pls reply me. I have one function in javascript.This function returns value. How to use this return value in aspx page? function call() { retrun val; } How to use this value in my aspx page? I call javascript function like:ddl_category,attributes.add("onchange","call();") I want a value from function in my aspx page. Pls help me Thanks monika
-
Hi I have one confusion if u have solution pls reply me. I have one function in javascript.This function returns value. How to use this return value in aspx page? function call() { retrun val; } How to use this value in my aspx page? I call javascript function like:ddl_category,attributes.add("onchange","call();") I want a value from function in my aspx page. Pls help me Thanks monika
Add a hidden Control(with runat=server) to your page. Access that control in your javascript and save the value that you want to take it to the webserver. After the request gets submitted to the server, you can access the hidden control from your aspx code-behind and proceed. Ravie...
Ravi Gopal.