gohom.win Open in urlscan Pro
2606:50c0:8003::153  Public Scan

URL: http://gohom.win/ManualHom/Coding/W3School/W3Schools_Offline_2015/www.w3schools.com/aspnet/showaspxcode75bd.html?...
Submission: On March 29 via manual from US — Scanned from US

Form analysis 0 forms found in the DOM

Text Content

<script  runat="server">
   Sub SubmitBtn(obj As Object, e As EventArgs)
     lblMsg.Text = "Submitted using the ASP.NET postback mechanism."
   End Sub
   </script>
<!DOCTYPE html>
<html>
<body>
   <form runat="server">
      Click the button:
   <asp:button id="Button1" Text="Submit" onclick="SubmitBtn"
      UseSubmitBehavior="FALSE" runat="server"/>
     <br>
     <asp:label id="lblMsg" runat="server"/>
   </form>
</body>
</html>