Okai..
This is my sample code for Palindrome checking.
Got a string in textbox 1.
TextBox2.Text = StrReverse(TextBox1.Text)
If TextBox1.Text = TextBox2.Text Then
MsgBox("String is palindrome", MsgBoxStyle.OkOnly)
Else
MsgBox("Not a palindrome", MsgBoxStyle.OkOnly)
End If
This code is done in Asp.Net webapplication with VB code behind.
Can u say how to use message box with C# code behind:?: