Tutorial by Examples

When the Repeater is Bound, for each item in the data, a new table row will be added. <asp:Repeater ID="repeaterID" runat="server" OnItemDataBound="repeaterID_ItemDataBound"> <HeaderTemplate> <table> <thead> ...
asp:ListView introduced in ASP.NET WebForms framework 3.5 is the most flexible of all DataPresentation Controls in the framework. An example of Grouping using ListView (which will come handy as an image gallery) Objective: To display three images in a row using asp:ListView Markup <asp:ListVie...
<script language="VB" runat="server"> Sub SubmitBtn_Click(sender As Object, e As EventArgs) Label1.Text = "Text1.Text = " & Text1.Text End Sub </script> <h3><font face="Verdana">TextBox Sample</...
The HyperLink control is used to navigate from the client to another page. <html> <script language="VB" runat="server"> Sub Page_Load(sender As Object, e As EventArgs) ' Set hyperlink to "~", which indicates application root. Hyper...

Page 1 of 1