Click here to Skip to main content
15,885,278 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionApplicxation form Pin
Bataineh24-Mar-09 3:59
Bataineh24-Mar-09 3:59 
AnswerRe: Applicxation form Pin
Milind R Chavan24-Mar-09 4:20
Milind R Chavan24-Mar-09 4:20 
AnswerRe: Applicxation form Pin
Abhijit Jana24-Mar-09 4:29
professionalAbhijit Jana24-Mar-09 4:29 
QuestionRe: Applicxation form Pin
Bataineh24-Mar-09 5:08
Bataineh24-Mar-09 5:08 
AnswerRe: Applicxation form Pin
Milind R Chavan24-Mar-09 5:59
Milind R Chavan24-Mar-09 5:59 
QuestionSend a reminder to outlook or other client using email Pin
Paul McGann24-Mar-09 3:02
professionalPaul McGann24-Mar-09 3:02 
AnswerRe: Send a reminder to outlook or other client using email Pin
Abhijit Jana24-Mar-09 4:31
professionalAbhijit Jana24-Mar-09 4:31 
Questionhow to maintain viewstate of a runtime generated control Pin
krishnaveer24-Mar-09 2:25
krishnaveer24-Mar-09 2:25 
Hi guys

I am generating a runtime htmltable, there are checkboxes
whatever is selected
after post back i want to keep this as it is(as before postback)


code for generating run time table

Dim tr1 As New HtmlTableRow

Dim txtbox As New TextBox
Dim chkbox As New CheckBox
Dim lbl As New Label

Dim td1 As New HtmlTableCell
Dim td2 As New HtmlTableCell
Dim td3 As New HtmlTableCell

txtbox.ID = "xyz" & M
chkbox.ID = "abc" & M
lbl.ID = "ijk" & M

lbl.Text = dsFill.Tables(0).Rows(M).Item("size")
txtbox.Width = "30"
txtbox.Height = "12"
lbl.Font.Size = "8"
chkbox.Height = "8"
lbl.Width = "80"
chkbox.ToolTip = "Click here which size you want"
txtbox.ToolTip = "Fill required quantity"

td1.Controls.Add(lbl)
td2.Controls.Add(chkbox)
td3.Controls.Add(txtbox)

tr1.Cells.Add(td1)
tr1.Cells.Add(td2)
tr1.Cells.Add(td3)

TABLE2.Rows.Add(tr1)


what will be solution please suggest me
Thanks In Advanced

krishna veer singh

AnswerRe: how to maintain viewstate of a runtime generated control Pin
Chetan.visodiya24-Mar-09 2:45
Chetan.visodiya24-Mar-09 2:45 
GeneralRe: how to maintain viewstate of a runtime generated control Pin
krishnaveer24-Mar-09 3:21
krishnaveer24-Mar-09 3:21 
GeneralRe: how to maintain viewstate of a runtime generated control Pin
Milind R Chavan24-Mar-09 3:42
Milind R Chavan24-Mar-09 3:42 
GeneralRe: how to maintain viewstate of a runtime generated control Pin
luckystar0921-Aug-09 17:17
luckystar0921-Aug-09 17:17 
AnswerRe: how to maintain viewstate of a runtime generated control Pin
Abhijit Jana24-Mar-09 4:32
professionalAbhijit Jana24-Mar-09 4:32 
QuestionKeyboard Shortcut in Sitemap Pin
Hajab24-Mar-09 2:01
Hajab24-Mar-09 2:01 
AnswerRe: Keyboard Shortcut in Sitemap Pin
Chetan.visodiya24-Mar-09 2:12
Chetan.visodiya24-Mar-09 2:12 
QuestionRe: Keyboard Shortcut in Sitemap Pin
Hajab24-Mar-09 4:04
Hajab24-Mar-09 4:04 
AnswerRe: Keyboard Shortcut in Sitemap Pin
Milind R Chavan24-Mar-09 3:53
Milind R Chavan24-Mar-09 3:53 
QuestionRe: Keyboard Shortcut in Sitemap Pin
Hajab24-Mar-09 4:08
Hajab24-Mar-09 4:08 
Questionadd Hierarchically items to dropdownlist Pin
billcodes24-Mar-09 1:32
billcodes24-Mar-09 1:32 
AnswerRe: add Hierarchically items to dropdownlist Pin
Vimalsoft(Pty) Ltd24-Mar-09 1:51
professionalVimalsoft(Pty) Ltd24-Mar-09 1:51 
Questionhow to host a website in asp.net2.0 and sqlserver2000 Pin
Subin Alex24-Mar-09 1:29
Subin Alex24-Mar-09 1:29 
AnswerRe: how to host a website in asp.net2.0 and sqlserver2000 Pin
Vimalsoft(Pty) Ltd24-Mar-09 1:40
professionalVimalsoft(Pty) Ltd24-Mar-09 1:40 
GeneralRe: how to host a website in asp.net2.0 and sqlserver2000 Pin
Subin Alex24-Mar-09 1:45
Subin Alex24-Mar-09 1:45 
GeneralRe: how to host a website in asp.net2.0 and sqlserver2000 Pin
Vimalsoft(Pty) Ltd24-Mar-09 2:03
professionalVimalsoft(Pty) Ltd24-Mar-09 2:03 
GeneralRe: how to host a website in asp.net2.0 and sqlserver2000 Pin
Subin Alex24-Mar-09 2:08
Subin Alex24-Mar-09 2:08 

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.