|
-
Jul 15th, 2008, 06:19 PM
#1
Thread Starter
Member
[2005] parse a column in gridview
when the data goes to gridview i am trying to change how the data is displayed in the third column. so far i can get the data formated as i want in
textbox5.text the porblem is getting it back in to gridview column 3 on all rows.
Dim i As Integer
Do While dr.Read()
Dim str As String
TextBox4.Text = dr.Item("cardnum").ToString()
str = TextBox4.Text
TextBox5.Text = "************" & str.Substring(12, 4)
GridView1.Rows(i).Cells(2).Text = TextBox5.Text
Loop
thanks in advance
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|