Click here to Skip to main content
15,905,912 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Design view in asp.net Pin
BalasubramanianK1-Jul-08 23:25
BalasubramanianK1-Jul-08 23:25 
Questionasp.net C# 2.0 generate pdf file Pin
wongeva1-Jul-08 21:37
wongeva1-Jul-08 21:37 
AnswerRe: asp.net C# 2.0 generate pdf file Pin
eyeseetee1-Jul-08 21:56
eyeseetee1-Jul-08 21:56 
Questionhow to place the check boxes in the list box Pin
lakshmichawala1-Jul-08 21:24
lakshmichawala1-Jul-08 21:24 
AnswerRe: how to place the check boxes in the list box Pin
Abhijit Jana1-Jul-08 21:31
professionalAbhijit Jana1-Jul-08 21:31 
GeneralRe: how to place the check boxes in the list box Pin
lakshmichawala1-Jul-08 21:33
lakshmichawala1-Jul-08 21:33 
AnswerRe: how to place the check boxes in the list box Pin
Abhijit Jana1-Jul-08 21:39
professionalAbhijit Jana1-Jul-08 21:39 
AnswerRe: how to place the check boxes in the list box Pin
Imran Khan Pathan1-Jul-08 23:41
Imran Khan Pathan1-Jul-08 23:41 
Questiona problem in workflow Pin
ptvce1-Jul-08 21:17
ptvce1-Jul-08 21:17 
QuestionAccessing value from .aspx to code behind page Pin
nagendrathecoder1-Jul-08 20:57
nagendrathecoder1-Jul-08 20:57 
AnswerRe: Accessing value from .aspx to code behind page Pin
N a v a n e e t h1-Jul-08 21:05
N a v a n e e t h1-Jul-08 21:05 
AnswerRe: Accessing value from .aspx to code behind page Pin
eyeseetee1-Jul-08 21:58
eyeseetee1-Jul-08 21:58 
AnswerRe: Accessing value from .aspx to code behind page Pin
Abhijit Jana1-Jul-08 22:27
professionalAbhijit Jana1-Jul-08 22:27 
GeneralRe: Accessing value from .aspx to code behind page Pin
N a v a n e e t h1-Jul-08 22:34
N a v a n e e t h1-Jul-08 22:34 
GeneralRe: Accessing value from .aspx to code behind page Pin
Abhijit Jana1-Jul-08 22:38
professionalAbhijit Jana1-Jul-08 22:38 
AnswerRe: Accessing value from .aspx to code behind page Pin
nagendrathecoder1-Jul-08 23:30
nagendrathecoder1-Jul-08 23:30 
Questionbutton in gridview's header not fired event Pin
Mhiny1-Jul-08 20:48
Mhiny1-Jul-08 20:48 
I have a gridview that autogeneratecolumns is true.I want to adding button to gridview's header .The problem is button not fired event.
My code :

Protected Sub grdPoint_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles grdPoint.RowDataBound

If e.Row.RowType = DataControlRowType.Header Then
For i As Integer = 9 To 20
Dim btn As New Button
AddHandler btn.Click, AddressOf click
btn.ID = i
btn.Text = e.Row.Cells(i).Text
btn.EnableViewState = True
btn.CausesValidation = False
e.Row.Cells(i).Controls.Add(btn)
Next
End If

End Sub

Public Sub click(ByVal sender As Object, ByVal e As System.EventArgs)

'do something

End Sub

Please help....
AnswerRe: button in gridview's header not fired event [modified] Pin
Sherin Iranimose1-Jul-08 21:25
Sherin Iranimose1-Jul-08 21:25 
GeneralRe: button in gridview's header not fired event Pin
Mhiny1-Jul-08 21:57
Mhiny1-Jul-08 21:57 
GeneralRe: button in gridview's header not fired event Pin
Sherin Iranimose1-Jul-08 22:12
Sherin Iranimose1-Jul-08 22:12 
GeneralRe: button in gridview's header not fired event Pin
Mhiny1-Jul-08 22:19
Mhiny1-Jul-08 22:19 
GeneralRe: button in gridview's header not fired event Pin
Sherin Iranimose1-Jul-08 22:33
Sherin Iranimose1-Jul-08 22:33 
AnswerRe: button in gridview's header not fired event Pin
eyeseetee1-Jul-08 22:00
eyeseetee1-Jul-08 22:00 
GeneralRe: button in gridview's header not fired event Pin
Mhiny1-Jul-08 22:09
Mhiny1-Jul-08 22:09 
GeneralRe: button in gridview's header not fired event Pin
eyeseetee1-Jul-08 22:22
eyeseetee1-Jul-08 22:22 

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.