ASP.net的AJAX

來源:互聯網
上載者:User
這兩天培訓的.Net framework讓我對微軟的東西有了進一步的瞭解。以前只是認為MS的東西就是拖來拖去的,並沒有其他讓人更驚喜的功能。今天介紹了ASP AJAX ToolKit以後,真是讓人大跌眼鏡。

舉些簡單的例子,比如說要加一個這樣的效果,一個Textbox輸入2個數字以後,要有聯想功能的把所有資料庫或者web service上以這兩個數字打頭的列出來。在ASP.NET裡只用一句話就可以了。

<ajaxToolkit:AutoCompleteExtender
ID="AutoCompleteExtender1"
TargetControlID="ZipCode"
ServicePath="ZipCodeService.asmx"
ServiceMethod="GetMatchingZipCodes"
MinimumPrefixLength="2"
CompletionListElementID="ctl00_MainPlaceHolder_ZipCodeComp
letionList"
CompletionSetCount="15"runat="server"/>

太簡單了,這要是在j2ee中作起來就麻煩多了,不過有了DWR等建立在J2EE上的AJAX架構,做起來也容易多了。

再比如,一個ZipCode要有提示輸入5個數位。首先要過濾,只保留數字和-。又是一句話,電話號碼也要這樣:

<ajaxToolkit:FilteredTextBoxExtender
ID="FilterTextBoxExtender1"
TargetControlID="ZipCode"FilterType="Custom"
ValidChars="0123456789-"
runat="server"/>

<ajaxToolkit:FilteredTextBoxExtender
ID="FilterTextBoxExtender2"
TargetControlID="Phone"FilterType="Custom"
ValidChars="0123456789()-."
runat="server"/>

然後提示輸入5個數字

<ajaxToolkit:TextBoxWatermarkExtender
ID="TextBoxWatermarkExtender1"
TargetControlID="ZipCode"WatermarkText="xxxxx"
runat="server"/>

<ajaxToolkit:TextBoxWatermarkExtender
ID="TextBoxWatermarkExtender2"
TargetControlID="Phone"WatermarkText="xxx-xxx-xxxx"
runat="server"/>

顯示出來的效果就是這樣的

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.