No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Re: 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"> … | |
Re: 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 … |
The End.