I'm having a problem posting a form and was wondering if anyone here could help.
I have a form that has a user control inside of it, this user control will prompt for two dates, but the user has to be able to add as many date ranges as they want. So when they click the "Add" button, this code gets executed to generate the two textboxes. This is just one to make it easier to read:
var newSDTB = document.createElement('input');
newSDTB.id = this._count;
newSDTB.setAttribute('type', 'text');
