Hello,
The Send button shown below should be sending an email out using our smtp client.
I am debugging the code and stepping through the logic and the break point is not even reached.
The code looks correct. Any suggestions on why my code will not break in the debugger as expected and/or why the SEND Button will not execut code?
<table style="width:100%;">
<tr>
<td>
<asp:Button ID="btnSubmit" runat="server" BackColor="#FF9900"
CausesValidation="True" Font-Bold="True" Height="46px"
onclick="btnSubmit_Click" Text="SEND" Width="127px" TabIndex="12" />
</td>
</tr>
</table>
protected void btnS ...
Go to the complete details ...