|
-
Feb 22nd, 2005, 09:38 AM
#1
Thread Starter
Addicted Member
table cell question
HOw can I add an empty row , I don't want text "space" appear in the table cell, I also tried .cells(i).text="" it doens't work out for me
With tblName.Rows(tblName.Rows.Count - 1)
.Cells.Add(New Web.UI.WebControls.TableCell)
.Cells.Add(New Web.UI.WebControls.TableCell)
.Cells.Add(New Web.UI.WebControls.TableCell)
.Cells(0).Text = "space"
.Cells(1).Text = "space"
.Cells(2).Text = "space"
End With
-
Feb 22nd, 2005, 11:18 AM
#2
I wonder how many charact
Last edited by nemaroller; Feb 22nd, 2005 at 11:34 AM.
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
|