mnongkhlaw
Programmer
Dear folks,
This problem's been bugging me for quite a while! I have to repost differently, I guess as I did not get any help so far.
I've got an ASP which uses the FormManager DTC along with 2 textboxes, txtVendorID & txtVendorName bound to an Access table with fields VendorID and VendorName respectively. VendorID is defined as a primary number field, whereas VendorName is a text field. The FormManager DTC manages the form mode and events for the buttons Add,Update,Delete,Save and Cancel.
I'd like a client-side validation routine so that when the user tries to add a new record by clicking Save button, it should check that (i) the value entered for the VendorID should not be a duplicate one and (ii) VendorName should not be blank.
I have no idea for (i) but for (ii), I tried the following code in the <HEAD> portion of the page, but it does not work at all :-
<SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
<!--
function thisPage_onbeforeserverevent(obj,event)
{
if (obj=="cmdSave"
{
if(event=="onclick"
{
if(document.thisForm.txtVendorName.value==""
{
alert("Vendor name cannot be blank!"
;
thisPage.cancelEvent = true;
document.thisForm.txtVendorName.focus();
}}}}
// -->
</SCRIPT>
What is wrong with this code and how can I also implement (i) above?
Your help will be greatly appreciated.
This problem's been bugging me for quite a while! I have to repost differently, I guess as I did not get any help so far.
I've got an ASP which uses the FormManager DTC along with 2 textboxes, txtVendorID & txtVendorName bound to an Access table with fields VendorID and VendorName respectively. VendorID is defined as a primary number field, whereas VendorName is a text field. The FormManager DTC manages the form mode and events for the buttons Add,Update,Delete,Save and Cancel.
I'd like a client-side validation routine so that when the user tries to add a new record by clicking Save button, it should check that (i) the value entered for the VendorID should not be a duplicate one and (ii) VendorName should not be blank.
I have no idea for (i) but for (ii), I tried the following code in the <HEAD> portion of the page, but it does not work at all :-
<SCRIPT ID=clientEventHandlersJS LANGUAGE=javascript>
<!--
function thisPage_onbeforeserverevent(obj,event)
{
if (obj=="cmdSave"
{
if(event=="onclick"
{
if(document.thisForm.txtVendorName.value==""
{
alert("Vendor name cannot be blank!"
thisPage.cancelEvent = true;
document.thisForm.txtVendorName.focus();
}}}}
// -->
</SCRIPT>
What is wrong with this code and how can I also implement (i) above?
Your help will be greatly appreciated.