How do you delete topics in this forum?

Discussion in 'ASP.NET / ASP.NET Core' started by slangdon, Oct 2, 2003.

Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.
  1. How do you delete topics in this forum?
     
  2. Here is an example...

     
  3.  
  4. Here is a VB-centric solution:

    Dim strBuilder As System.Text.StringBuilder = New System.Text.StringBuilder()
    strBuilder.Append("<script language='vbscript'>")
    strBuilder.Append("frmMain.txtLogin.focus()")
    strBuilder.Append("</script>")
    RegisterStartupScript("Focus", strBuilder.ToString)


    Note: frmMain is the id of the ASPX form where the textbox lives:

    <form id=frmMain method=post runat="server">




    Allan Sieker
    Eureka, MO
     
Thread Status:
Threads that have been inactive for 5 years or longer are closed to further replies. Please start a new thread.

Share This Page