Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.83 KB | None | 0 0
  1. <script runat="server">
  2. Sub submit(sender As Object, e As EventArgs)
  3.         Label1.Text = "Your name is " & txt1.Text
  4. End Sub
  5. </script>
  6.  
  7. <html>
  8. <body>
  9.  
  10. <form id="Form1" runat="server">
  11. <asp:Button ID="Button1" OnClick="submit" Text="iman_alavi" runat="server"
  12.     BackColor="#FF3300" />
  13. <asp:Button ID="Button2" OnClick="submit" Text="iman_alavi" runat="server"
  14.     BackColor="#66FF33" />
  15. <asp:Button ID="Button3" OnClick="submit" Text="iman_alavi" runat="server"
  16.     BackColor="Yellow" />
  17. <asp:TextBox
  18. ID="TextBox1"
  19. runat="server"
  20. Height="117px"
  21. Width="389px"
  22. OnTextChanged="TextBox1_TextChanged"
  23. AutoPostBack="true"
  24. BackColor="lightblue"
  25. Font-Bold="true"
  26. Font-Italic="false"
  27. BorderWidth="4"
  28. Font-Size="Larger"
  29. Columns="80"
  30. TextMode="MultiLine"
  31. Wrap="true"
  32. Visible="true">
  33. </asp:TextBox>
  34. </form>
  35.  
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement