BadXAsh
Joined: 05 Dec 2005 Posts: 1
|
Posted: Mon Dec 05, 2005 8:30 pm Post subject: Challanging HTML Code Question |
|
|
My question is this, On my site i have a Tracking button that Sends customers to the UPS tracking site and Auto populates their tracking #, Well now i use alot of DHL shipping so i want to have it so that when They hit the Tracking button it takes them to their Perticular Shipping Company's tracking site, So my real question is this how would i Add DHL and tell the system to Look and see what shipping company. they are using and take them there. Here is a sample of the code that's there now...
<td >
<div align="center"><font size="1">$#customtext3#</font></div>
</td>
<td >
<div align="center"><font size="1">#customtext1#</font></div>
</td>
<td >
<font size="1">
<CFIF LEN(#customtext2#) GTE 2>
<div align="center">#customtext2#
<CFELSE>
</div>
</CFIF>
</font></td>
<td >
<form method="post" action="http://wwwapps.ups.com/WebTracking/OnlineTool">
<input type="image" border="0" name="imageField3" src="../images/button_track.gif" width="55" height="25" align="middle">
<input type="hidden" name="InquiryNumber1" value="#customtext2#">
<input type="hidden" name="UPS_HTML_Version" value="3.0">
<input type="hidden" name="UPS_HTML_License" value="3BA8DCC3C89E93F6">
<input type="hidden" name="TypeOfInquiryNumber value="T"">
<input type="hidden" name="IATA" value="us">
<input type="hidden" name="LANG" value="eng">
<input type="hidden" name="nonUPSTitle" value="DIYAutoparts.com Package tracking">
customtext1 is the Shipping type field
customtext2 is the tracking # field
Any Help would be greatly recieved. |
|