Forum: ASP.NET |
Thema:
Re: Migration von c# nach vb.net |
Von:
Thomas Golla (
01.03.2005 16:15) |
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If Not Page.IsPostBack Then
TextBox1.Text = System.DateTime.Now.ToShortDateString()
pnlCalendar.Attributes.Add("style", "DISPLAY: none; POSITION: absolute")
Else
Dim id As String = Page.Request.Form("__EVENTTARGET").Substring(0, Page.Request.Form("__EVENTTARGET").IndexOf(":"))
If id <> Me.ID Then
Me.AddedControlpnlCalendar.Attributes.Add("style", "DISPLAY: none; POSITION: absolute")
Else
this.pnlCalendar.Attributes.Add("style", "POSITION: absolute")
End If
Page.RegisterClientScriptBlock("Script_Panel" & Me.ID, "<script> function On" & Me.ID & "Click() { if(" & Me.ID & "_pnlCalendar.style.display == ""none"") " & Me.ID & "_pnlCalendar.style.display = "" ""; else " & Me.ID & "_pnlCalendar.style.display = ""none""; } </script>")
Me.Button1.Attributes.Add("OnClick", "On" & Me.ID & "Click()")
End Sub
Betreff |
Von |
Datum |
|
|
G.
Guest
|
30.06.2005 18:12 |
|
|
Antworten
Vorsicht bei der Eingabe: Die Zeichen ' oder -- sind nicht erlaubt!