Public Sub ShowPopupMessageDuck(ByVal message As String)
lblMessagePopupHeading.Text = "Error"
ltrMessagePopupImage.Text = "<img src='" + Page.ResolveUrl("~/images/exclaim.gif") + "' alt='' />"
lblMessagePopupText.Text = message
mpeMessagePopup.Show()
End Sub
Tag : .NET, Ajax, Web (ASP.NET), VB.NET, VS 2008 (.NET 3.x)
หน้า masterpage เขียน method เพื่อส่งค่าในแต่ละ control
Code
Public ReadOnly Property DropDownValue() As String
Get
Return DropDownList1.Text
End Get
End Property
Public ReadOnly Property TextBoxValue() As String
Get
Return TextBox1.Text
End Get
End Property
Protected Sub gv_production_group_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gv_production_group.RowDataBound
If objCenter.InListOR("'" & e.Row.RowIndex & "'", "'0','4','8','12','15'") Then
e.Row.BackColor = System.Drawing.Color.FromName("#FFCCCC")
End If