ASP.NET Insert() ค้นหาตำแหน่งและแทรกข้อความที่ต้องการ
Syntax
String.Insert(Start-Index,String)
Sample
<%@ Page Language="VB" %>
<script runat="server">
Sub Page_Load(sender As Object, e As EventArgs)
Dim strString As String = "My Web Site www.ThaiCreate.Com"
Me.lblText1.Text = strString.Insert(12,"http://")
End Sub
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Label id="lblText1" runat="server"></asp:Label>
</form>
</body>
</html>