Aug 25 2008

Captcha Using Asp.Net

If you’re new here, you may want to subscribe to my RSS feed. Thanks for visiting!Here is a simple code to create a captcha image. This ASP.net code creates a bitmap image of a randomly selected string. I think this code is self explanatory. If you have any queries please post it as a [...]

Jul 17 2008

extract/get email address from string using vb.net

Here is a simple VB.Net code to extract email addresses from a string

Imports System.Text.RegularExpressions
 
Public Class Form1
 
Private Sub btnExtract_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExtract.Click
 
Dim textstring As Array
Dim strEmail As String
[...]