DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Access Server Side Variable In Javascript
Add following javascript function to aspx page
function check() {
alert("this is check value " + '<%= checkvalue %>');
}
Add following variable declaration on server side i.e aspx.cs
public string checkvalue ="indrnilhafa";





