Sometimes we have to use server side variable value in JavaScript. Here I would give how to use the Server Side Variable in JavaScript.
In Code behind
public string strName;
In Page_Load
strname = “Welcome to Code Behind Page”;
In java script we call the code bind variable is given below
alert(‘<%=strname%>’);