Introduction:
Here you have to see the process to get the JavaScript Variables values at sever side by using the below code..
First you have to write the script function to pass the
value in variable..
Code:
<script type="text/javascript">
function ret() {
var t =
document.createElement("INPUT");
t.type = "hidden";
t.name = "t";
t.value = "Get the value on server side";
document.forms[0].appendChild(t);
}
</script>
|
Then we need to call the function onclient click button
event……
<asp:Button ID="Button3" runat="server" Text="Button" OnClientClick ="ret();" />
|
Finally we get the data in code behind by using below code..
Protected Sub
Button3_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Button3.Click
Dim str As String
str = Request.Form("t")
lbltxt.Text = str
End Sub
|
I hope you like the
easy way to get the JavaScript variable at code behind..
Post your comments.