Session variables cannot be set using Javascript
directly
But you can use the following code to set session variables in aspx page
<%Session["SESSION VARIABLE NAME"] ="SOME STRING"; %>
你们可以用javascript的警示来检查同样的变量。
alert( <%=Session["SESSION VARIABLE NAME"] %> );
Yes session variability can be set using pagemethods using the following way
宣布以下代码为px.cs页
[WebMethod]
public static void functionname(string st)
{
Home h = new Home();
System.Web.HttpContext.Current.Session["SessionUserName"] = st;
h.strUserName = (string)System.Web.HttpContext.Current.Session["SessionUserName"];
}
并使用px中的页数表示功能
PageMethods.functionname("HELLO");
这将把本届会议改为。
如果你打算使用网页方法,你也可以向网上浏览。 !