Click here to Skip to main content
15,912,072 members

Comments by Member 10766267 (Top 1 by date)

Member 10766267 10-Nov-14 4:17am View    
after run two or more times it will give the value like Empty "" or nothing..
How to Do?
My 1st Page aa.aspx i did
function InitializeRequest(path) {
// call server side method
PageMethods.SetDownloadPath(path);
}
[System.Web.Services.WebMethod]
public static string SetDownloadPath(string strpath)
{
Page objp = new Page();
objp.Session["strDwnPath"] = strpath;
return strpath;
}

<asp:ScriptManager EnablePageMethods="true" ID="MainSM" runat="server" ScriptMode="Release" LoadScriptsBeforeUI="true">


how i can get strpath value into bb.aspx code behind???