Groups | Blog | Home
all groups > asp.net webcontrols > october 2007 >

asp.net webcontrols : AddHandler not working


Charlie
10/1/2007 7:03:00 PM
Try changing the line

Dim questionlink As New LinkButton()

to

Dim WithEvents questionlink As New LinkButton()

Does that work?


[quoted text, click to view]
Charlie
10/1/2007 8:35:00 PM
Put the declaration of questionlink outside of the btnSubmit_Click code
block, in the general declarations area...

public withevents questionlink as New LinkButton()
inside your codeblock, remove the dim questionlink line.

you could also scope the linkbutton as public or friend.

does that work?

[quoted text, click to view]
Nathan Sokalski
10/1/2007 9:38:34 PM
I have a section of my code that dynamically creates LinkButtons to allow
the user to go to the page containing a question they have not answered. The
code that creates the LinkButton is called, as well as the AddHandler line
(I ran a Debug and saw that it executes this code, and the links are
displayed on the page afterwards). However, the eventhandler is not called
when the LinkButton is clicked. Here is the code that dynamically generates
the LinkButtons as well as the eventhandler I want to be called:


'The code that generates the LinkButtons:
Private Sub btnSubmit_Click(ByVal sender As Object, ByVal e As
System.Web.UI.ImageClickEventArgs) Handles btnSubmit.Click
Me.submitanswers()
If Me.completetest() Then
'Code that I use to update my database, not involved in this
problem because Me.completetest() returns false
Else
Me.lblAnswered.Text = String.Format("{0} of 75 Questions
Answered (Not Answered: ", CStr(Me.questionsanswered()))
Dim myconnection As New
SqlConnection(System.Configuration.ConfigurationManager.AppSettings("connectionstring"))
Dim cmd As New SqlCommand("", myconnection)
Dim qnumreader As SqlDataReader
Dim insertafter As Integer =
Me.Form.Controls.IndexOf(Me.lblAnswered) + 1
For i As Integer = 1 To 75
cmd.CommandText = String.Format("SELECT
questions.questionnumber FROM useranswers INNER JOIN questions ON
useranswers.questionid=questions.questionid WHERE
questions.questionnumber={0} AND useranswers.testid={1} AND
useranswers.userid={2}", i, CStr(Session("testid")),
CStr(Session("userid")))
myconnection.Open()
qnumreader = cmd.ExecuteReader()
If Not qnumreader.Read() Then
Dim questionlink As New LinkButton()
questionlink.CausesValidation = False
questionlink.CommandArgument = i
questionlink.CssClass = "answerRED"
questionlink.EnableViewState = False
questionlink.Text = i & " "
AddHandler questionlink.Command, AddressOf
Me.QuestionLinkCommand
Me.Form.Controls.AddAt(insertafter, questionlink)
insertafter += 1
End If
myconnection.Close()
Next
Me.lblCloseParen.Visible = True
End If
End Sub

'The eventhandler I want to use:
Private Sub QuestionLinkCommand(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.CommandEventArgs)
Dim myconnection As New
SqlConnection(System.Configuration.ConfigurationManager.AppSettings("connectionstring"))
Dim cmd As New SqlCommand("SELECT subgroupid FROM questions WHERE
questionnumber=" & e.CommandArgument, myconnection)
myconnection.Open()
Session("subgroupid") = CInt(cmd.ExecuteScalar())
myconnection.Close()
End Sub


When I run my Application, the code in btnSubmit_Click works as I expect (or
at least it looks like it did), but when I click the dynamically created
LinkButtons (variable name questionlink), they postback but do not trigger
the QuestionLinkCommand method (the QuestionLinkCommand never gets executed
when I do a debug session). I cannot figure out why they are not triggering
this eventhandler, because I use AddHandler statements when creating the
LinkButtons, and the eventhandler has the correct signature. Is there
something I am doing wrong? Thanks.
--
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/

Nathan Sokalski
10/1/2007 11:19:12 PM
No, if I add the WithEvents keyword I recieve the message:

'WithEvents' is not valid on a local variable declaration.

That was a good suggestion (when I read your reply I thought that might be
it), but unfortunately it wasn't. Any other ideas? Thanks.
--
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/

[quoted text, click to view]

Cor Ligthert[MVP]
10/2/2007 12:00:00 AM
Nathan,

Here is a simple sample of dynamicly creating textboxes with events.

Will you be so kind if you send next time problems to these newsgroup to
show a simple sample instead of almost a complete sample. We want to help
you, however not doing a daytime job by investigating parts which are not
relevant to your question.

Cor
Cor Ligthert[MVP]
10/2/2007 12:00:00 AM
Sorry,

AddThis Social Bookmark Button