Click here to Skip to main content
15,921,793 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Caching Pin
BalasubramanianK1-Sep-08 21:30
BalasubramanianK1-Sep-08 21:30 
AnswerRe: Caching Pin
Sathesh Sakthivel1-Sep-08 21:12
Sathesh Sakthivel1-Sep-08 21:12 
GeneralRe: Caching Pin
BalasubramanianK1-Sep-08 21:33
BalasubramanianK1-Sep-08 21:33 
AnswerRe: Caching Pin
Blue_Boy1-Sep-08 21:37
Blue_Boy1-Sep-08 21:37 
GeneralRe: Caching Pin
BalasubramanianK1-Sep-08 22:55
BalasubramanianK1-Sep-08 22:55 
GeneralRe: Caching Pin
Blue_Boy2-Sep-08 0:10
Blue_Boy2-Sep-08 0:10 
AnswerRe: Caching Pin
Member 36367992-Sep-08 0:10
Member 36367992-Sep-08 0:10 
QuestionLinkbutton control problem Pin
Rameez Raja1-Sep-08 20:36
Rameez Raja1-Sep-08 20:36 
hi all ,
iam not able to add linkbutton control to table cell can any body suggest me where iam doing wrong i have used following code to add linkbutton control to table cells

Dim myarray() As Integer = {0, 1, 2, 1, 4, 5, 6, 7, 1, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31}
            Dim d As Integer
            For d = 0 To 31
                Dim tc As TableCell = New TableCell
                If myarray(d) = 1 Then
                    Dim linkbutton As LinkButton = New LinkButton()
                    linkbutton.ID = "lnkbutton"
                    linkbutton.Text = " click here"
                    tc.Controls.Add(linkbutton)
                    'tc.BackColor = Color.DarkGreen
                Else
                    tc.BackColor = Color.Yellow
                End If
                tc.Text = " "
                trow.Cells.Add(tc)
            Next

            Table.Rows.Add(trow)


or alternate way how i do that.

Best regards
Rameez
AnswerRe: Linkbutton control problem Pin
AhsanS1-Sep-08 21:03
AhsanS1-Sep-08 21:03 
GeneralRe: Linkbutton control problem Pin
Rameez Raja1-Sep-08 23:01
Rameez Raja1-Sep-08 23:01 
AnswerRe: Linkbutton control problem Pin
Neeraj Arora1-Sep-08 23:01
Neeraj Arora1-Sep-08 23:01 
GeneralRe: Linkbutton control problem Pin
Rameez Raja1-Sep-08 23:16
Rameez Raja1-Sep-08 23:16 
QuestionProblem setting focus Pin
CrazyCoder261-Sep-08 20:36
CrazyCoder261-Sep-08 20:36 
AnswerRe: Problem setting focus Pin
Gamzun1-Sep-08 20:45
Gamzun1-Sep-08 20:45 
GeneralRe: Problem setting focus Pin
CrazyCoder261-Sep-08 20:47
CrazyCoder261-Sep-08 20:47 
GeneralRe: Problem setting focus Pin
Gamzun1-Sep-08 20:49
Gamzun1-Sep-08 20:49 
GeneralRe: Problem setting focus Pin
CrazyCoder261-Sep-08 20:50
CrazyCoder261-Sep-08 20:50 
GeneralRe: Problem setting focus Pin
Gamzun1-Sep-08 20:53
Gamzun1-Sep-08 20:53 
GeneralRe: Problem setting focus Pin
CrazyCoder261-Sep-08 20:55
CrazyCoder261-Sep-08 20:55 
QuestionError: The name 'ListBoxSites' does not exist in the current context Pin
PDTUM1-Sep-08 20:08
PDTUM1-Sep-08 20:08 
AnswerRe: Error: The name 'ListBoxSites' does not exist in the current context Pin
Sandeep Akhare1-Sep-08 20:23
Sandeep Akhare1-Sep-08 20:23 
GeneralRe: Error: The name 'ListBoxSites' does not exist in the current context Pin
PDTUM2-Sep-08 8:19
PDTUM2-Sep-08 8:19 
QuestionTimeout Error in my Web Application Pin
VivekNema1-Sep-08 19:18
VivekNema1-Sep-08 19:18 
AnswerRe: Timeout Error in my Web Application Pin
Palli Rummi1-Sep-08 19:48
Palli Rummi1-Sep-08 19:48 
GeneralRe: Timeout Error in my Web Application Pin
VivekNema12-Sep-08 21:53
VivekNema12-Sep-08 21:53 

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.