web 2.0

ASP.NET(vb.net) & HTMLButton

ASP.NET(vb.net) & HTMLButton - HTMLButton : Creates a server-side control that maps to the <button> HTML element and allows you create push buttons.

ShotDev Focus:
- ASP.NET(vb.net) & HTMLButton

ASP.NET(vb.net) & HTMLButton

Tag Control :

<button id="programmaticID"
OnServerClick="onserverclickhandler"
runat="server" >
buttontext, image, or control
</button>

Example

HTMLButton.aspx

<%@ Page Language="VB" %>
<script runat="server">

Sub Button1_OnClick(sender As Object, e As EventArgs)
Me.lblText1.Text = Request.Form("txtInput1")
Me.lblText2.Text = Me.txtInput2.Value
End Sub

</script>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<form runat="server">
Text 1 = <input type="text" name="txtInput1" value="<%=Request.Form("txtInput1")%>" />
<br />
Text 2 = <input type="text" id="txtInput2" runat="server"/>
<button id="Button1" runat="server" OnServerClick="Button1_OnClick">Click Here</button>
<hr>
<asp:Label id="lblText1" runat="server"></asp:Label>
<br>
<asp:Label id="lblText2" runat="server"></asp:Label>
</form>
</body>
</html>

Screenshot

ASP.NET(vb.net) & HTMLButton
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (1 votes, average: 10.00 out of 10)
Loading ... Loading ...

One Response to “ASP.NET(vb.net) & HTMLButton”

  1. 3indebtedness…

Leave a Reply

You must be logged in to post a comment.