Click here to Skip to main content
15,897,519 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: activating search by pressing enter(keyboard) Pin
Eduard Keilholz19-Jul-07 5:08
Eduard Keilholz19-Jul-07 5:08 
GeneralRe: activating search by pressing enter(keyboard) Pin
kubben19-Jul-07 7:08
kubben19-Jul-07 7:08 
QuestionWebservice security using WSE 3.0 Pin
Eduard Keilholz19-Jul-07 4:17
Eduard Keilholz19-Jul-07 4:17 
QuestionASP .net video tutorilas Pin
ciacia19-Jul-07 4:17
ciacia19-Jul-07 4:17 
AnswerRe: ASP .net video tutorilas Pin
krishnamaneni.anil19-Jul-07 4:37
krishnamaneni.anil19-Jul-07 4:37 
AnswerRe: ASP .net video tutorilas Pin
Vasudevan Deepak Kumar19-Jul-07 7:19
Vasudevan Deepak Kumar19-Jul-07 7:19 
Questionhow to add 3 checkbox per row in htmltable dynamically Pin
rahul.net1119-Jul-07 3:45
rahul.net1119-Jul-07 3:45 
AnswerRe: how to add 3 checkbox per row in htmltable dynamically Pin
S Ullas19-Jul-07 10:36
S Ullas19-Jul-07 10:36 
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

QuestionWebservice - URL, property Pin
peacefulmember19-Jul-07 3:29
peacefulmember19-Jul-07 3:29 
Questionhow to display pictures in a DataGridView Pin
mavii19-Jul-07 3:21
mavii19-Jul-07 3:21 
AnswerRe: how to display pictures in a DataGridView Pin
Imran Khan Pathan19-Jul-07 3:33
Imran Khan Pathan19-Jul-07 3:33 
GeneralRe: how to display pictures in a DataGridView Pin
mavii19-Jul-07 4:06
mavii19-Jul-07 4:06 
GeneralRe: how to display pictures in a DataGridView Pin
kubben19-Jul-07 4:17
kubben19-Jul-07 4:17 
QuestionHow to disable or remove the "Open" option [file download window ] Pin
Jay_se19-Jul-07 3:20
Jay_se19-Jul-07 3:20 
AnswerRe: How to disable or remove the "Open" option [file download window ] Pin
Vasudevan Deepak Kumar19-Jul-07 6:52
Vasudevan Deepak Kumar19-Jul-07 6:52 
QuestionThe HTTP verb POST Pin
matjame19-Jul-07 2:41
matjame19-Jul-07 2:41 
AnswerRe: The HTTP verb POST Pin
sathesh pandian19-Jul-07 6:00
sathesh pandian19-Jul-07 6:00 
GeneralRe: The HTTP verb POST Pin
matjame19-Jul-07 22:02
matjame19-Jul-07 22:02 
AnswerRe: The HTTP verb POST Pin
S Ullas19-Jul-07 10:56
S Ullas19-Jul-07 10:56 
QuestionSession Management in ASP.NET Pin
swapnilbhavsar19-Jul-07 2:22
swapnilbhavsar19-Jul-07 2:22 
AnswerRe: Session Management in ASP.NET Pin
Eduard Keilholz19-Jul-07 2:32
Eduard Keilholz19-Jul-07 2:32 
GeneralRe: Session Management in ASP.NET Pin
Piyush Vardhan Singh19-Jul-07 2:47
Piyush Vardhan Singh19-Jul-07 2:47 
QuestionStyleSheet - CSS, examples? Pin
thomasa19-Jul-07 2:11
thomasa19-Jul-07 2:11 
AnswerRe: StyleSheet - CSS, examples? Pin
sathesh pandian19-Jul-07 2:14
sathesh pandian19-Jul-07 2:14 
AnswerRe: StyleSheet - CSS, examples? Pin
Not Active19-Jul-07 2:30
mentorNot Active19-Jul-07 2:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.