Sanjay Mehrotra wrote
make sure that the newly created dll is in your dotnetnuke\bin folder - if it's not then copy it over
Sanjay
Thanks Sunjay for you quick respond but i created this problem to just show you that my ASCX file is not linked
with ASCX.VB file
now lets do this so that we dont get error and our Project gets Compiled
Now
File : Feedback.ascx
<asp:linkbutton id="cmdSend" ....
<asp:ImageButton ID="cmdSend_New" .....
File : Feedback.ascx.vb
Protected WithEvents cmdSend As System.Web.UI.WebControls.LinkButton
Protected WithEvents cmdSend_New As System.Web.UI.WebControls.ImageButton
Now to write the code for So created "cmdSend_New" when i double click on image button
i get following code
<script runat="server">
Protected Sub cmdSend_New_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs)
End Sub
</script>
in the Feedback.ascx file ... shouldnt i go to FeebBack.ascx.vb ??
For more simple way
i changed the following tin the vb file
Private Sub cmdSend_Click(ByVal sender As Object, ByVal e As EventArgs) Handles cmdSend.Click
'To Handle Firefox users.
MsgBox("Sending...!!!") ......
Aftert i click "Send" dont get the msgbox ? ... but the Module works !