0

ajaxpro メソッドに問題があります。.cs ファイルで、ページのグローバル変数を次のように定義しました。

public partial class Admin : System.Web.UI.Page
{
    public int localidMember = 9;
    protected void Page_Load(object sender, EventArgs e)
    {

        AjaxPro.Utility.RegisterTypeForAjax(typeof(Admin));


        if (HttpContext.Current.Session["HomeOwn_ID"] != null)
        {
            localidMember = Convert.ToInt32(HttpContext.Current.Session["HomeOwn_ID"].ToString());

        }

    }


    [AjaxPro.AjaxMethod(AjaxPro.HttpSessionStateRequirement.ReadWrite)]
    public string LoadInbox()
    {
        // I need to use the variable localidMember and expected that it will have the value that I have set to pageload.., but it didnt. The variable is reinitialized to 9... Anyone have any ideas what's going on... Thanks so much ! 
    }

}
4

2 に答える 2

1

あなたには無理だと思います。AjaxPro では、コントロールのプロパティを処理できないためです。

于 2012-09-08T07:17:09.680 に答える