Plz make it more clear ....
After i replace the orginal Feeback module folder with one i Downloaded ( one with Source Code )
should i also replace the DLL file in folder ... "DotNetNuke\bin"
1. DotNetNuke.Modules.Feedback.dll
2. DotNetNuke.Modules.Feedback.SqlDataProvider.dll
Or 'Build' from VisualStudio will automatically replace those DLL ??
If you can plz provide full stepwise how to replace 'Feedback' Module with the Downloaded one with Source Code
Now about the code i am trying to change is
File: Feedback.ascx
Line No : 70
<asp:linkbutton id="cmdSend_old" ValidationGroup="Feedbackform" resourcekey="cmdSend" runat="server" cssclass="CommandButton" causesvalidation="True">Send</asp:linkbutton>
<asp:ImageButton ID="cmdSend" ValidationGroup="Feedbackform" resourcekey="cmdSend" runat="server" cssclass="CommandButton" causesvalidation="True" runat="server" ImageUrl="images/green-ok.gif" />
As I like to replace the send buttom with the image button
File: Feedback.ascx.vb
Line No : 60
Protected WithEvents cmdSend_Old As System.Web.UI.WebControls.LinkButton
Protected WithEvents cmdSend As System.Web.UI.WebControls.ImageButton
But i get error while compiling
Error 35 The base class includes the field 'cmdSend', but its type (System.Web.UI.WebControls.LinkButton) is not compatible with the type of control (System.Web.UI.WebControls.ImageButton). C:\DNN\DotNetNuke\DesktopModules\Feedback\Feedback.ascx 1
So clearly i think the file Feedback.ascx is not reading the file Feedback.ascx.vb