VB.NET & StrDup() - StrDup() : Returns a string or object consisting of the specified character repeated the specified number of times.
ShotDev Focus:
- VB.NET & StrDup()
Example
StrDup.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Me.lblText1.Text = StrDup(3, "W") End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form runat="server"> <asp:Label id="lblText1" runat="server"></asp:Label> </form> </body> </html>
Screenshot