Posted on: 10/12/2015 1:51:16 PM | Views : 996

I have an aspx page(running .net 4 framwork not MVC) that has an mailto that is using an href and also has a . The link button works correctly firing off code behind. If i click on the href with the mailto (it will fire up outlook with the correct info) and after that try to click on the link button, the does not fire. The looks like this when rendered.

<input type="submit" name="ctl00$ContentPlaceHolder1$btnSave" value="Save Attendance" onclick="return checkDisableButton(this.id, 'PROCESSING');" id="ContentPlaceHolder1_btnSave" class="ButtonPrimary button" disabled=""> The checkDisabledButton code
function checkDisableButton(btn, parmText, icon) { var mbtn = $('#' + btn); mbtn.a ...

Go to the complete details ...