| | | Create URL from textbox input |
|
|
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Name"></asp:Label><br />
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox><br />
<asp:Label ID="Label2" runat="server" Text="Email"></asp:Label><br />
<asp:TextBox ID="TextBox2" runat="server"></asp:TextBox><br />
<asp:Button ID="Button1" runat="server" Text="Submit"/>
<asp:Button ID="Button2" runat="server" Text="Session" />
<asp:Button ID="Button3" runat="server" Text="Button" /><br />
</div>
</form>
</body>
</html>
File: Default.aspx.vb
Partial Class _Default
Inherits System.Web.UI.Page
Public Function Name() As String
Return TextBox1.Text
End Function
Public Function EMail() As String
Return TextBox2.Text
End Function
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim URL As String
URL = "Default.aspx?name=" + TextBox1.Text + "&email=" + TextBox2.Text
Response.Redirect(URL)
End Sub
Protected Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
Session("name") = TextBox1.Text
Session("email") = TextBox2.Text
Server.Transfer("Default2.aspx")
End Sub
Protected Sub Button3_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button3.Click
End Sub
End Class
|
|
|
|
| Related examples in the same category |
| 1. | asp:TextBox: format (VB.net) | | | | 2. | asp:TextBox: AccessKey (VB.net) | | | | 3. | asp:TextBox: BorderStyle (VB.net) | | | | 4. | Single Line asp:TextBox (VB.net) | | | | 5. | Multiline asp:TextBox (VB.net) | | | | 6. | MaxLength for asp:textbox (VB.net) | | | | 7. | TabIndex for asp:textbox (VB.net) | | | | 8. | asp:textbox: back ground color (VB.net) | | | | 9. | asp:textbox: wrap (VB.net) | | | | 10. | BackColor, ForeColor, BorderColor, AccessKey, Columns for asp:textbox (VB.net) | | | | 11. | Convert value from asp:TextBox to upper case (VB.net) | | | | 12. | Control asp:TextBox visibility (VB.net) | | | | 13. | Get Text Box input and check if it is an Odd Number (VB.net) | | | | 14. | On text changed in asp:TextBox (VB.net) | | | | 15. | Watch TextBox, CheckBox and radiobutton auto post back action (C#) | | | | 16. | HTML Button, Select and InputBox in code behind (C#) | | | | 17. | asp: textbox on text changed event (C#) | | | | 18. | Validate textbox value manually (C#) | | | | 19. | Is asp:textbox empty (C#) | | | | 20. | Get value from TextBox (C#) | | | | 21. | Pre fill the asp textbox control (C#) | | | | 22. | TextMode: SingleLine, Password and MultiLine | | | | 23. | Set TextBox focus | | | | 24. | Triggering an event when a TextBox change occurs (VB) | | | | 25. | Triggering an event when a TextBox change occurs (C#) | | | | 26. | Set AutoCompleteType | | | | 27. | Set MaxLength, Columns | | | | 28. | Rows, TextMode, Wrap | | | | 29. | TextMode=Password | | |
|