Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #44.2K
~2K People Reached
Favorite Tags

2 Posted Topics

Member Avatar for divyasrinivasan

Hi there... still new so please forgive me if I make a mistake... to add validation to a textbox that is inside a gridview... 1. Convert the field into a text field... 2. then add validation into the <EditItemTemplate></EditItemTemplate> and the <InsertItemTemplate></InsertItemTemplate> as below... : [CODE] <asp:TemplateField HeaderText="Client Number" SortExpression="ClientNumber"> …

Member Avatar for cloudlight
0
851
Member Avatar for nickelmann

Hi Nickelmann... I hope this helps you... [code] Protected Sub btnExtract_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnExtract.Click Dim textEntry As String = txtWordEntry.Text txtExtractedWords.Text = "" Dim words As String() = textEntry.Split(New Char() {" "c}) Dim word As String For Each word In words If validWord(word) Then …

Member Avatar for nickelmann
0
2K

The End.