Assigning values

M

Mark A. Sam

On an ASP I have checkboxes:

<tr>
<td width="30%" bgcolor="#FFFFFF" bordercolor="#000040" align="right"
height="20"><font
color="#000000"><strong>Need Sides </strong></font></td>
<td width="70%" height="20"><input type="checkbox"
name="needsides"value="Yes"></td>
</tr>

and a drop down list:

<td width="70%" height="24"><select SIZE="1" NAME="trailertype">
<option selected value="Select One"> Select One </option>
<option value="Van or Reefer"> Van or Reefer </option>
<option value="Reefer"> Reefer </option>
<option value="Van"> Van </option>
<option value="Flatbed"> Flatbed </option>
<option>Animal Hauler</option>
<option value="Auto Transport"> Auto Transport </option>
<option>Boat Hauler</option>
<option value="Cattle Trailer"> Cattle Trailer </option>
<option>Container</option>
<option>Double Drop</option>
<option>Dry Bulk Container</option>
<option>Dump</option>
<option value="Dump Trailer"> Dump Trailer </option>
<option value="Dump Truck"> Dump Truck </option>
<option value="Grain Tank"> Grain Tanker </option>
<option>Hopper</option>
<option>Hot Shot</option>
<option>Intermodal</option>
<option>Liquid Bulk Trailer</option>
<option>Mobile Home</option>
<option>Moving Van</option>
<option>Other</option>
<option>Other Special Equipment</option>
<option>Single Drop</option>
<option value="Straight Truck"> Straight Truck </option>
<option>Tank</option>
<option value="Tanker"> Tanker </option>
<option>Truck</option>
</select> </td>
<tr/>


There are variables, needsides and trailertype which get assigned when the
page opens. I want to assign the value of the variable to the checkboxes
and dropdown listbox, but can't get anywhere with it.

Any help is appreciated.

God Bless,

Mark A. Sam
 
S

Stefan B Rusynko

You add the ASP code to your values in the form fields
If you are calling them w/ say objRS("needsides") and objRS("trailertype")
Then you use

<input type="checkbox" name="needsides" value="<%+objRS("needsides")%>">

and for a single value

<option value="<%=objRS("trailertype")%>"><%=objRS("trailertype")%></option>

Or to create the dropdown from the DB see
http://www.asp101.com/samples/db_pulldown.asp





| On an ASP I have checkboxes:
|
| <tr>
| <td width="30%" bgcolor="#FFFFFF" bordercolor="#000040" align="right"
| height="20"><font
| color="#000000"><strong>Need Sides </strong></font></td>
| <td width="70%" height="20"><input type="checkbox"
| name="needsides"value="Yes"></td>
| </tr>
|
| and a drop down list:
|
| <td width="70%" height="24"><select SIZE="1" NAME="trailertype">
| <option selected value="Select One"> Select One </option>
| <option value="Van or Reefer"> Van or Reefer </option>
| <option value="Reefer"> Reefer </option>
| <option value="Van"> Van </option>
| <option value="Flatbed"> Flatbed </option>
| <option>Animal Hauler</option>
| <option value="Auto Transport"> Auto Transport </option>
| <option>Boat Hauler</option>
| <option value="Cattle Trailer"> Cattle Trailer </option>
| <option>Container</option>
| <option>Double Drop</option>
| <option>Dry Bulk Container</option>
| <option>Dump</option>
| <option value="Dump Trailer"> Dump Trailer </option>
| <option value="Dump Truck"> Dump Truck </option>
| <option value="Grain Tank"> Grain Tanker </option>
| <option>Hopper</option>
| <option>Hot Shot</option>
| <option>Intermodal</option>
| <option>Liquid Bulk Trailer</option>
| <option>Mobile Home</option>
| <option>Moving Van</option>
| <option>Other</option>
| <option>Other Special Equipment</option>
| <option>Single Drop</option>
| <option value="Straight Truck"> Straight Truck </option>
| <option>Tank</option>
| <option value="Tanker"> Tanker </option>
| <option>Truck</option>
| </select> </td>
| <tr/>
|
|
| There are variables, needsides and trailertype which get assigned when the
| page opens. I want to assign the value of the variable to the checkboxes
| and dropdown listbox, but can't get anywhere with it.
|
| Any help is appreciated.
|
| God Bless,
|
| Mark A. Sam
|
|
 
M

Mark A. Sam

Hello Stefan,

That didn't solve it. That method works with textboxes, but not checkboxes.
In fact I tried assigning a value of -1 and it did nothing. The Value
property of a checkbox seems to be different then the InitialValue property
of a textbox.

I tried assigining it with VB code,

<%
response.write needpallets
If needpallets = -1 then
response.write "<input type='checkbox' value='Yes' name='needpallets'
Checked'>"
else
response.write "<input type='checkbox' value='Yes' name='needpallets'>"
end if%>


If tyhe value of the variable needpallets is -1 then it should produce the
html line:

<input type='checkbox' value='Yes' name='needpallets' Checked'>

which would be a checkbox which is checked, but it doesn't. The line
r"esponse.write needpallets" returned a value of -1 on the page next to the
checkbox, but the box was still unchecked.

I'm really stumped and need to get this resolved. I'm modifying my code to
work with an SQL Server db from Access and would like make the changeover
this weekend.

Thanks and God Bless,

Mark




Stefan B Rusynko said:
You add the ASP code to your values in the form fields
If you are calling them w/ say objRS("needsides") and objRS("trailertype")
Then you use

<input type="checkbox" name="needsides" value="<%+objRS("needsides")%>">

and for a single value

<option
 
S

Stefan B Rusynko

SQL uses 0/1 which is different from Access (0/-1 - T/F)
Plus a lot more changes
See
http://www.aspfaq.com/show.asp?id=2214




| Hello Stefan,
|
| That didn't solve it. That method works with textboxes, but not checkboxes.
| In fact I tried assigning a value of -1 and it did nothing. The Value
| property of a checkbox seems to be different then the InitialValue property
| of a textbox.
|
| I tried assigining it with VB code,
|
| <%
| response.write needpallets
| If needpallets = -1 then
| response.write "<input type='checkbox' value='Yes' name='needpallets'
| Checked'>"
| else
| response.write "<input type='checkbox' value='Yes' name='needpallets'>"
| end if%>
|
|
| If tyhe value of the variable needpallets is -1 then it should produce the
| html line:
|
| <input type='checkbox' value='Yes' name='needpallets' Checked'>
|
| which would be a checkbox which is checked, but it doesn't. The line
| r"esponse.write needpallets" returned a value of -1 on the page next to the
| checkbox, but the box was still unchecked.
|
| I'm really stumped and need to get this resolved. I'm modifying my code to
| work with an SQL Server db from Access and would like make the changeover
| this weekend.
|
| Thanks and God Bless,
|
| Mark
|
|
|
|
| | > You add the ASP code to your values in the form fields
| > If you are calling them w/ say objRS("needsides") and objRS("trailertype")
| > Then you use
| >
| > <input type="checkbox" name="needsides" value="<%+objRS("needsides")%>">
| >
| > and for a single value
| >
| > <option
| value="<%=objRS("trailertype")%>"><%=objRS("trailertype")%></option>
| >
| > Or to create the dropdown from the DB see
| > http://www.asp101.com/samples/db_pulldown.asp
| >
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| | > | On an ASP I have checkboxes:
| > |
| > | <tr>
| > | <td width="30%" bgcolor="#FFFFFF" bordercolor="#000040" align="right"
| > | height="20"><font
| > | color="#000000"><strong>Need Sides </strong></font></td>
| > | <td width="70%" height="20"><input type="checkbox"
| > | name="needsides"value="Yes"></td>
| > | </tr>
| > |
| > | and a drop down list:
| > |
| > | <td width="70%" height="24"><select SIZE="1" NAME="trailertype">
| > | <option selected value="Select One"> Select One </option>
| > | <option value="Van or Reefer"> Van or Reefer </option>
| > | <option value="Reefer"> Reefer </option>
| > | <option value="Van"> Van </option>
| > | <option value="Flatbed"> Flatbed </option>
| > | <option>Animal Hauler</option>
| > | <option value="Auto Transport"> Auto Transport </option>
| > | <option>Boat Hauler</option>
| > | <option value="Cattle Trailer"> Cattle Trailer </option>
| > | <option>Container</option>
| > | <option>Double Drop</option>
| > | <option>Dry Bulk Container</option>
| > | <option>Dump</option>
| > | <option value="Dump Trailer"> Dump Trailer </option>
| > | <option value="Dump Truck"> Dump Truck </option>
| > | <option value="Grain Tank"> Grain Tanker </option>
| > | <option>Hopper</option>
| > | <option>Hot Shot</option>
| > | <option>Intermodal</option>
| > | <option>Liquid Bulk Trailer</option>
| > | <option>Mobile Home</option>
| > | <option>Moving Van</option>
| > | <option>Other</option>
| > | <option>Other Special Equipment</option>
| > | <option>Single Drop</option>
| > | <option value="Straight Truck"> Straight Truck </option>
| > | <option>Tank</option>
| > | <option value="Tanker"> Tanker </option>
| > | <option>Truck</option>
| > | </select> </td>
| > | <tr/>
| > |
| > |
| > | There are variables, needsides and trailertype which get assigned when
| the
| > | page opens. I want to assign the value of the variable to the
| checkboxes
| > | and dropdown listbox, but can't get anywhere with it.
| > |
| > | Any help is appreciated.
| > |
| > | God Bless,
| > |
| > | Mark A. Sam
| > |
| > |
| >
| >
|
|
 
M

Mark A. Sam

Stefan,

You're right, SQL does use 1 = True, however my test is against a variable
named needpallets, not a recordset field value. I need the Checkbox to
display as checked when the variable = -1 or 1 or whatever value. It simply
won't happen. It doesn't make sense.

God Bless,

Mark


Stefan B Rusynko said:
SQL uses 0/1 which is different from Access (0/-1 - T/F)
Plus a lot more changes
See
http://www.aspfaq.com/show.asp?id=2214




| Hello Stefan,
|
| That didn't solve it. That method works with textboxes, but not checkboxes.
| In fact I tried assigning a value of -1 and it did nothing. The Value
| property of a checkbox seems to be different then the InitialValue property
| of a textbox.
|
| I tried assigining it with VB code,
|
| <%
| response.write needpallets
| If needpallets = -1 then
| response.write "<input type='checkbox' value='Yes' name='needpallets'
| Checked'>"
| else
| response.write "<input type='checkbox' value='Yes' name='needpallets'>"
| end if%>
|
|
| If tyhe value of the variable needpallets is -1 then it should produce the
| html line:
|
| <input type='checkbox' value='Yes' name='needpallets' Checked'>
|
| which would be a checkbox which is checked, but it doesn't. The line
| r"esponse.write needpallets" returned a value of -1 on the page next to the
| checkbox, but the box was still unchecked.
|
| I'm really stumped and need to get this resolved. I'm modifying my code to
| work with an SQL Server db from Access and would like make the changeover
| this weekend.
|
| Thanks and God Bless,
|
| Mark
|
|
|
|
| | > You add the ASP code to your values in the form fields
| > If you are calling them w/ say objRS("needsides") and objRS("trailertype")
| > Then you use
| >
| > <input type="checkbox" name="needsides"
value= said:
| >
| > and for a single value
| >
| > <option
| value="<%=objRS("trailertype")%>"><%=objRS("trailertype")%></option>
| >
| > Or to create the dropdown from the DB see
| > http://www.asp101.com/samples/db_pulldown.asp
| >
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| | > | On an ASP I have checkboxes:
| > |
| > | <tr>
| > | <td width="30%" bgcolor="#FFFFFF" bordercolor="#000040" align="right"
| > | height="20"><font
| > | color="#000000"><strong>Need Sides </strong></font></td>
| > | <td width="70%" height="20"><input type="checkbox"
| > | name="needsides"value="Yes"></td>
| > | </tr>
| > |
| > | and a drop down list:
| > |
| > | <td width="70%" height="24"><select SIZE="1" NAME="trailertype">
| > | <option selected value="Select One"> Select One </option>
| > | <option value="Van or Reefer"> Van or Reefer </option>
| > | <option value="Reefer"> Reefer </option>
| > | <option value="Van"> Van </option>
| > | <option value="Flatbed"> Flatbed </option>
| > | <option>Animal Hauler</option>
| > | <option value="Auto Transport"> Auto Transport </option>
| > | <option>Boat Hauler</option>
| > | <option value="Cattle Trailer"> Cattle Trailer </option>
| > | <option>Container</option>
| > | <option>Double Drop</option>
| > | <option>Dry Bulk Container</option>
| > | <option>Dump</option>
| > | <option value="Dump Trailer"> Dump Trailer </option>
| > | <option value="Dump Truck"> Dump Truck </option>
| > | <option value="Grain Tank"> Grain Tanker </option>
| > | <option>Hopper</option>
| > | <option>Hot Shot</option>
| > | <option>Intermodal</option>
| > | <option>Liquid Bulk Trailer</option>
| > | <option>Mobile Home</option>
| > | <option>Moving Van</option>
| > | <option>Other</option>
| > | <option>Other Special Equipment</option>
| > | <option>Single Drop</option>
| > | <option value="Straight Truck"> Straight Truck </option>
| > | <option>Tank</option>
| > | <option value="Tanker"> Tanker </option>
| > | <option>Truck</option>
| > | </select> </td>
| > | <tr/>
| > |
| > |
| > | There are variables, needsides and trailertype which get assigned when
| the
| > | page opens. I want to assign the value of the variable to the
| checkboxes
| > | and dropdown listbox, but can't get anywhere with it.
| > |
| > | Any help is appreciated.
| > |
| > | God Bless,
| > |
| > | Mark A. Sam
| > |
| > |
| >
| >
|
|
 
S

Stefan B Rusynko

Your problem is an extra single quote after Checked
Should be
<input type='checkbox' value='Yes' name='needpallets' Checked>"
not
<input type='checkbox' value='Yes' name='needpallets' Checked'>"






| Stefan,
|
| You're right, SQL does use 1 = True, however my test is against a variable
| named needpallets, not a recordset field value. I need the Checkbox to
| display as checked when the variable = -1 or 1 or whatever value. It simply
| won't happen. It doesn't make sense.
|
| God Bless,
|
| Mark
|
|
| | > SQL uses 0/1 which is different from Access (0/-1 - T/F)
| > Plus a lot more changes
| > See
| > http://www.aspfaq.com/show.asp?id=2214
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| | > | Hello Stefan,
| > |
| > | That didn't solve it. That method works with textboxes, but not
| checkboxes.
| > | In fact I tried assigning a value of -1 and it did nothing. The Value
| > | property of a checkbox seems to be different then the InitialValue
| property
| > | of a textbox.
| > |
| > | I tried assigining it with VB code,
| > |
| > | <%
| > | response.write needpallets
| > | If needpallets = -1 then
| > | response.write "<input type='checkbox' value='Yes' name='needpallets'
| > | Checked'>"
| > | else
| > | response.write "<input type='checkbox' value='Yes'
| name='needpallets'>"
| > | end if%>
| > |
| > |
| > | If tyhe value of the variable needpallets is -1 then it should produce
| the
| > | html line:
| > |
| > | <input type='checkbox' value='Yes' name='needpallets' Checked'>
| > |
| > | which would be a checkbox which is checked, but it doesn't. The line
| > | r"esponse.write needpallets" returned a value of -1 on the page next to
| the
| > | checkbox, but the box was still unchecked.
| > |
| > | I'm really stumped and need to get this resolved. I'm modifying my code
| to
| > | work with an SQL Server db from Access and would like make the
| changeover
| > | this weekend.
| > |
| > | Thanks and God Bless,
| > |
| > | Mark
| > |
| > |
| > |
| > |
| > | | > | > You add the ASP code to your values in the form fields
| > | > If you are calling them w/ say objRS("needsides") and
| objRS("trailertype")
| > | > Then you use
| > | >
| > | > <input type="checkbox" name="needsides"
| value="<%+objRS("needsides")%>">
| > | >
| > | > and for a single value
| > | >
| > | > <option
| > | value="<%=objRS("trailertype")%>"><%=objRS("trailertype")%></option>
| > | >
| > | > Or to create the dropdown from the DB see
| > | > http://www.asp101.com/samples/db_pulldown.asp
| > | >
| > | >
| > | > --
| > | >
| > | > _____________________________________________
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > To find the best Newsgroup for FrontPage support see:
| > | > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > _____________________________________________
| > | >
| > | >
| > | | > | > | On an ASP I have checkboxes:
| > | > |
| > | > | <tr>
| > | > | <td width="30%" bgcolor="#FFFFFF" bordercolor="#000040"
| align="right"
| > | > | height="20"><font
| > | > | color="#000000"><strong>Need Sides </strong></font></td>
| > | > | <td width="70%" height="20"><input type="checkbox"
| > | > | name="needsides"value="Yes"></td>
| > | > | </tr>
| > | > |
| > | > | and a drop down list:
| > | > |
| > | > | <td width="70%" height="24"><select SIZE="1" NAME="trailertype">
| > | > | <option selected value="Select One"> Select One </option>
| > | > | <option value="Van or Reefer"> Van or Reefer </option>
| > | > | <option value="Reefer"> Reefer </option>
| > | > | <option value="Van"> Van </option>
| > | > | <option value="Flatbed"> Flatbed </option>
| > | > | <option>Animal Hauler</option>
| > | > | <option value="Auto Transport"> Auto Transport </option>
| > | > | <option>Boat Hauler</option>
| > | > | <option value="Cattle Trailer"> Cattle Trailer </option>
| > | > | <option>Container</option>
| > | > | <option>Double Drop</option>
| > | > | <option>Dry Bulk Container</option>
| > | > | <option>Dump</option>
| > | > | <option value="Dump Trailer"> Dump Trailer </option>
| > | > | <option value="Dump Truck"> Dump Truck </option>
| > | > | <option value="Grain Tank"> Grain Tanker </option>
| > | > | <option>Hopper</option>
| > | > | <option>Hot Shot</option>
| > | > | <option>Intermodal</option>
| > | > | <option>Liquid Bulk Trailer</option>
| > | > | <option>Mobile Home</option>
| > | > | <option>Moving Van</option>
| > | > | <option>Other</option>
| > | > | <option>Other Special Equipment</option>
| > | > | <option>Single Drop</option>
| > | > | <option value="Straight Truck"> Straight Truck </option>
| > | > | <option>Tank</option>
| > | > | <option value="Tanker"> Tanker </option>
| > | > | <option>Truck</option>
| > | > | </select> </td>
| > | > | <tr/>
| > | > |
| > | > |
| > | > | There are variables, needsides and trailertype which get assigned
| when
| > | the
| > | > | page opens. I want to assign the value of the variable to the
| > | checkboxes
| > | > | and dropdown listbox, but can't get anywhere with it.
| > | > |
| > | > | Any help is appreciated.
| > | > |
| > | > | God Bless,
| > | > |
| > | > | Mark A. Sam
| > | > |
| > | > |
| > | >
| > | >
| > |
| > |
| >
| >
|
|
 
M

Mark A. Sam

Thank you Stefan. That was the problem.


Stefan B Rusynko said:
Your problem is an extra single quote after Checked
Should be
<input type='checkbox' value='Yes' name='needpallets' Checked>"
not
<input type='checkbox' value='Yes' name='needpallets' Checked'>"






| Stefan,
|
| You're right, SQL does use 1 = True, however my test is against a variable
| named needpallets, not a recordset field value. I need the Checkbox to
| display as checked when the variable = -1 or 1 or whatever value. It simply
| won't happen. It doesn't make sense.
|
| God Bless,
|
| Mark
|
|
| | > SQL uses 0/1 which is different from Access (0/-1 - T/F)
| > Plus a lot more changes
| > See
| > http://www.aspfaq.com/show.asp?id=2214
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| | > | Hello Stefan,
| > |
| > | That didn't solve it. That method works with textboxes, but not
| checkboxes.
| > | In fact I tried assigning a value of -1 and it did nothing. The Value
| > | property of a checkbox seems to be different then the InitialValue
| property
| > | of a textbox.
| > |
| > | I tried assigining it with VB code,
| > |
| > | <%
| > | response.write needpallets
| > | If needpallets = -1 then
| > | response.write "<input type='checkbox' value='Yes' name='needpallets'
| > | Checked'>"
| > | else
| > | response.write "<input type='checkbox' value='Yes'
| name='needpallets'>"
| > | end if%>
| > |
| > |
| > | If tyhe value of the variable needpallets is -1 then it should produce
| the
| > | html line:
| > |
| > | <input type='checkbox' value='Yes' name='needpallets' Checked'>
| > |
| > | which would be a checkbox which is checked, but it doesn't. The line
| > | r"esponse.write needpallets" returned a value of -1 on the page next to
| the
| > | checkbox, but the box was still unchecked.
| > |
| > | I'm really stumped and need to get this resolved. I'm modifying my code
| to
| > | work with an SQL Server db from Access and would like make the
| changeover
| > | this weekend.
| > |
| > | Thanks and God Bless,
| > |
| > | Mark
| > |
| > |
| > |
| > |
| > | | > | > You add the ASP code to your values in the form fields
| > | > If you are calling them w/ say objRS("needsides") and
| objRS("trailertype")
| > | > Then you use
| > | >
| > | > <input type="checkbox" name="needsides"
| value="<%+objRS("needsides")%>">
| > | >
| > | > and for a single value
| > | >
| > | > <option
| > | value="<%=objRS("trailertype")%>"><%=objRS("trailertype")%></option>
| > | >
| > | > Or to create the dropdown from the DB see
| > | > http://www.asp101.com/samples/db_pulldown.asp
| > | >
| > | >
| > | > --
| > | >
| > | > _____________________________________________
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > To find the best Newsgroup for FrontPage support see:
| > | > http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > _____________________________________________
| > | >
| > | >
| > | | > | > | On an ASP I have checkboxes:
| > | > |
| > | > | <tr>
| > | > | <td width="30%" bgcolor="#FFFFFF" bordercolor="#000040"
| align="right"
| > | > | height="20"><font
| > | > | color="#000000"><strong>Need Sides </strong></font></td>
| > | > | <td width="70%" height="20"><input type="checkbox"
| > | > | name="needsides"value="Yes"></td>
| > | > | </tr>
| > | > |
| > | > | and a drop down list:
| > | > |
| > | > | <td width="70%" height="24"><select SIZE="1" NAME="trailertype">
| > | > | <option selected value="Select One"> Select One </option>
| > | > | <option value="Van or Reefer"> Van or Reefer </option>
| > | > | <option value="Reefer"> Reefer </option>
| > | > | <option value="Van"> Van </option>
| > | > | <option value="Flatbed"> Flatbed </option>
| > | > | <option>Animal Hauler</option>
| > | > | <option value="Auto Transport"> Auto Transport </option>
| > | > | <option>Boat Hauler</option>
| > | > | <option value="Cattle Trailer"> Cattle Trailer </option>
| > | > | <option>Container</option>
| > | > | <option>Double Drop</option>
| > | > | <option>Dry Bulk Container</option>
| > | > | <option>Dump</option>
| > | > | <option value="Dump Trailer"> Dump Trailer </option>
| > | > | <option value="Dump Truck"> Dump Truck </option>
| > | > | <option value="Grain Tank"> Grain Tanker </option>
| > | > | <option>Hopper</option>
| > | > | <option>Hot Shot</option>
| > | > | <option>Intermodal</option>
| > | > | <option>Liquid Bulk Trailer</option>
| > | > | <option>Mobile Home</option>
| > | > | <option>Moving Van</option>
| > | > | <option>Other</option>
| > | > | <option>Other Special Equipment</option>
| > | > | <option>Single Drop</option>
| > | > | <option value="Straight Truck"> Straight Truck </option>
| > | > | <option>Tank</option>
| > | > | <option value="Tanker"> Tanker </option>
| > | > | <option>Truck</option>
| > | > | </select> </td>
| > | > | <tr/>
| > | > |
| > | > |
| > | > | There are variables, needsides and trailertype which get assigned
| when
| > | the
| > | > | page opens. I want to assign the value of the variable to the
| > | checkboxes
| > | > | and dropdown listbox, but can't get anywhere with it.
| > | > |
| > | > | Any help is appreciated.
| > | > |
| > | > | God Bless,
| > | > |
| > | > | Mark A. Sam
| > | > |
| > | > |
| > | >
| > | >
| > |
| > |
| >
| >
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top