關於asp.net 2.0 入門學習之“GlobalResources與Callback問題”的筆記

來源:互聯網
上載者:User

    前幾天,在csdn.net和asp.net以及codeproject.com上問的這兩個問題,一個是GlobalResources一個是Callback。
    因為昨天給asp.net的jeremyh (因為他當天是被asp.net推薦的牛人。)去了Mail請求協助。今天,一早,就收到他的回複了。我的問題描述和交流過程詳見:
    http://forums.asp.net/p/1185188/2029767.aspx#2029767

    我發現第一問題,就出在fi-FI與fi的命名上。一個小問題,害得我到處問。

    第二問題,我現在也可以簡單的理解了。所以,特將第二個問題以我的方式總結一下,我將其核心代碼(我個人認為的)貼在這兒。
    
    今後要用時,直接在“// perform some real operation”這兒放My Code就行了。
    
    至於更深的理解,就在實踐中去領悟了。而第二個問題的相關文章可以參閱:    
    http://www.codeproject.com/useritems/ClientCallback.asp

    www.123de6.cn

public partial class _Default : System.Web.UI.Page, ICallbackEventHandler   

{

    string callbackResult;

    protected void Page_Load(object sender, EventArgs e)

    {

        // will discuss this later

    }

 

    public void RaiseCallbackEvent(string eventArgument)

    {

        // perform some real operation

        callbackResult = "DotNET Rocks!";

    }

   

    public string GetCallbackResult()

    {

        return callbackResult;

    }

}

 
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.