Is it possible to get the property(get; set; ) say Name from code behind(aspx.cs) file into jquery?
In the codebehind add the following:
Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "ClientVariable", "var clientVariable = '" + clientValue + "';", true);
where clientValue is the value you would like to be accessible, by using the normal javascript variable clientVariable in your client code.
Don't leave out the 'true' parameter at the end, as the default is to not add script tags, which prevents the script from working.