Hi All,
Basically i am trying to add an additional search to a website, my ASP knowledge is quite limited although i seem to be getting there. i have introduced the search field into page and have the funtion setup. however what i dont seem to be able to find is the fields/functions its calling.
heres the function code:
Code:
function ViewExistingShippingAddresses2() {
if ((document.Update.search_ship_to2.value == "") || (document.Update.search_ship_to2.value == "Search By Cost Centre")) {
alert("Please enter a Cost Centre to search for. If you do not remember the full ID, enter the starting characters for a broader search.");
return false;
}
else {
document.Update.MM_submit_action.value = 'ShippingAddresses';
document.Update.submit();
}
and the form field:
Code:
<input name="search_ship_to2" type="text" class="formstyleControl" id="search_ship_to2" tabindex="94" value="Search by Cost Centre" size="36" maxlength="100" onFocus="this.value='';"></td>
<td width="20"><input name="button_search_ship_from2" type="button" class="formstyleControl" value="Search" onClick="ViewExistingShippingAddresses2();">
im really just trying to find where i would pull the data from for this? how would i get it to search based upon cost centre rather then address?
(viewexistingshippingaddress2 is an additional field which i have created.
please someone help i've been stuck on this for days... really need some help
thanks,
Arran