Greetings
We just had a new design provided for our Website. It is in responsive CSS. But when we implemented it, it broke all our .NET Form Controls.
Buttons no longer postback when clicked, form validation does not work, etc... In fact, the button does nothing when clicked.
I believe the issue is being caused by BootStrap. But I don't know how to fix it. It simply will not natually postback and even when getting it to do
so with JavaScipt - the form values are blank.
I have played around with it and I have been able to get it to post back using JavaScript through good ole
document.forms[0].submit();
But I am unable to get the form values. They are always blank whether I use direct access to them (such username.text) or I use request.form.
I am beyond puzzled. Here is the simple code
<script>
function ...
Go to the complete details ...