在Mobile WebForm的DeviceSpecific容器中取得及設定控制項的方法

摘要:在Mobile WebForm的DeviceSpecific容器中取得及設定控制項的方法

在Mobile Web Form能用的控制項少之又少,若想使用ASP.NET所提供的控制項

必須使用DeviceSpecific控制項中Template(樣版編輯)的功能,至於用法網路上很多,在此就不討論

當在DeviceSpecific容器中放置一個Asp.net的文字方塊,要如何取得文字內容或設定內容呢?

程式碼如下:

Dim c As Control
For Each c In Form1.Controls
    If c.GetType Is GetType(MobileControls.TemplateContainer) Then
        Dim ctrl As TextBox = CType(c.FindControl("TextBox1"), TextBox)
        If Not (ctrl Is Nothing) Then
            ctrl.Text = "歡迎光臨"
        End If
    End If
Next c