check this also I think you will get an idea about how to make rounded corner http://www.alistapart.com/articles/slidingdoors/[^]
Ullas Sadanandan
check this also I think you will get an idea about how to make rounded corner http://www.alistapart.com/articles/slidingdoors/[^]
Ullas Sadanandan
do you want to submit any data to the htm file? if not, you can call a javascript function in the onClick event and redirect to the html file using the following code in the javascript document.location = " html path"; make sure the button type should not be submit.
Ullas Sadanandan
Hi Rahul, I am not good in vb I think you can write the same as Dim tabrow As TableRow i = 0 While dr.Read Dim chkbox As CheckBox = New CheckBox chkbox.Text = dr(0) chkbox.CssClass = "pagetext2inside" chkbox.ID = "chklang" & i Dim tabcell As TableCell = New TableCell if (i mod 3)= 0 then if tabrow.Cells.Count > 0 then chktable.Rows.Add(tabrow) end if tabrow = New TableRow end if tabcell.Controls.Add(chkbox) tabrow.Controls.Add(tabcell) i = i + 1 End While dr.Close() if tabrow.Cells.Count > 0 then chktable.Rows.Add(tabrow) end if
Ullas Sadanandan