Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

populating a dropdown list based on the value of a textbox (onLoad)

Status
Not open for further replies.

Joelo

MIS
Sep 27, 2003
61
Hello everyone,

Please I want to automatically populate my dropdown list based on the value of a textbox onLoad of the my FORM....
both textbox and dropdown list are populated by my database
i.e
nos. items
1 gum
1 gum1
1 gum4
2 bolt
2 bolt2
If the value of my textbox(nos.) is 1 onLoad of my FORM, my dropdown list will be populated with

<code>
<select name=&quot;list&quot; size=&quot;1&quot;>
<option>gum</option>
<option>gum1</option>
<option>gum4</option>
</select>
</code>

and If the value of my textbox(nos.) is 2 onLoad of my FORM, my dropdown list will be populated with

<code>
<select name=&quot;list&quot; size=&quot;1&quot;>
<option>bolt</option>
<option>bolt2</option>
</select>
</code>

and so on........

please could anyone help me out
 
If the textbox is already populated onLoad then why not just script the select with the correct data at server side. There's no point in using javascript to populate it if the you know what it's going to be before you send the page to the browser

 
please is there any detailed example...I don't quite understand


Thanks
 
I am getting my data for the drop down and data for textbox from my database

Thanks
 
This is code for my Form:

<form onSubmit=&quot;return EW_checkMyForm(this);&quot; action=&quot;welljacketdatabaseadd.asp&quot; method=&quot;post&quot;>
<p>
<input type=&quot;hidden&quot; name=&quot;a&quot; value=&quot;A&quot;>
<table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;5&quot; bgcolor=&quot;#CCCCCC&quot;>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>WELLJACKETID</font>&nbsp;</font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_WELLJACKETID&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_WELLJACKETID&&quot;&quot;) %>&quot;></font>&nbsp;</td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>WELLID</font>&nbsp;</font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><%
x_WELLIDList = &quot;<SELECT name='x_WELLID'><OPTION value=''>Please Select</OPTION>&quot;
sqlwrk = &quot;SELECT [WELLID] FROM [wellheaddatabase]&quot;
Set rswrk = Server.CreateObject(&quot;ADODB.Recordset&quot;)
rswrk.Open sqlwrk, conn, 1, 2
If Not rswrk.EOF Then
datawrk = rswrk.GetRows
rowswrk = UBound(datawrk, 2)
For rowcntwrk = 0 To rowswrk
x_WELLIDList = x_WELLIDList & &quot;<OPTION value='&quot; & datawrk(0, rowcntwrk) & &quot;'&quot;
If cstr(datawrk(0, rowcntwrk)&&quot;&quot;) = cstr(x_WELLID&&quot;&quot;) Then
x_WELLIDList = x_WELLIDList & &quot; selected&quot;
End If
x_WELLIDList = x_WELLIDList & &quot;>&quot; & datawrk(0, rowcntwrk) & &quot;</option>&quot;
Next
End If
rswrk.Close
Set rswrk = Nothing
x_WELLIDList = x_WELLIDList & &quot;</SELECT>&quot;
response.write x_WELLIDList
%>
</font>&nbsp;</td>
</tr>
</table>
<p>
<input type=&quot;submit&quot; name=&quot;Action&quot; value=&quot;ADD&quot;>
</form>
 
My textbox data also is being populated by my database
This is my complete code:
<%
Response.expires = 0
Response.expiresabsolute = Now() - 1
Response.addHeader &quot;pragma&quot;, &quot;no-cache&quot;
Response.addHeader &quot;cache-control&quot;, &quot;private&quot;
Response.CacheControl = &quot;no-cache&quot;
%>
<!--#include file=&quot;db.asp&quot;-->
<!--#include file=&quot;aspmkrfn.asp&quot;-->
<%
Response.Buffer = True
key = Request.Querystring(&quot;key&quot;)
If key=&quot;&quot; OR IsNull(key) Then key = Request.Form(&quot;key&quot;)
If key=&quot;&quot; OR IsNull(key) Then Response.Redirect &quot;welljacketdatabaselist.asp&quot;
'get action
a=Request.Form(&quot;a&quot;)
If a=&quot;&quot; OR IsNull(a) Then
a=&quot;I&quot; 'display with input box
End If
'get fields from form

x_WELLJACKETID = Request.Form(&quot;x_WELLJACKETID&quot;)
x_WELLID = Request.Form(&quot;x_WELLID&quot;)

' Open Connection to the database
Set conn = Server.CreateObject(&quot;ADODB.Connection&quot;)
conn.Open xDb_Conn_Str
Select Case a
Case &quot;I&quot;: ' Get a record to display
tkey = &quot;&quot; & key & &quot;&quot;
strsql = &quot;SELECT * FROM [welljacketdatabase] WHERE [ID]=&quot; & tkey
Set rs = Server.CreateObject(&quot;ADODB.Recordset&quot;)
rs.Open strsql, conn
If rs.EOF Then
Response.Clear
Response.Redirect &quot;welljacketdatabaselist.asp&quot;
Else
rs.MoveFirst
End If
' Get the field contents
x_WELLJACKETID = rs(&quot;WELLJACKETID&quot;)
x_WELLID = rs(&quot;WELLID&quot;)
rs.Close
Set rs = Nothing
Case &quot;U&quot;: ' Update
' Open record
tkey = &quot;&quot; & key & &quot;&quot;
strsql = &quot;SELECT * FROM [welljacketdatabase] WHERE [ID]=&quot; & tkey
Set rs = Server.CreateObject(&quot;ADODB.Recordset&quot;)
rs.Open strsql, conn, 1, 2
If rs.EOF Then
Response.Clear
Response.Redirect &quot;welljacketdatabaselist.asp&quot;
End If
tmpFld = Trim(x_WELLJACKETID)
If trim(tmpFld) & &quot;x&quot; = &quot;x&quot; Then tmpFld = Null
rs(&quot;WELLJACKETID&quot;) = tmpFld
tmpFld = Trim(x_WELLID)
If trim(tmpFld) & &quot;x&quot; = &quot;x&quot; Then tmpFld = Null
rs(&quot;WELLID&quot;) = tmpFld
rs.Update
rs.Close
Set rs = Nothing
conn.Close
Set conn = Nothing
Response.Clear
Response.Redirect &quot;welljacketdatabaselist.asp&quot;
End Select
%>
<form onSubmit=&quot;return EW_checkMyForm(this);&quot; action=&quot;welljacketdatabaseadd.asp&quot; method=&quot;post&quot;>
<p>
<input type=&quot;hidden&quot; name=&quot;a&quot; value=&quot;A&quot;>
<table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;5&quot; bgcolor=&quot;#CCCCCC&quot;>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>WELLJACKETID</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_WELLJACKETID&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_WELLJACKETID&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>WELLID</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><%
x_WELLIDList = &quot;<SELECT name='x_WELLID'><OPTION value=''>Please Select</OPTION>&quot;
sqlwrk = &quot;SELECT [WELLID] FROM [wellheaddatabase]&quot;
Set rswrk = Server.CreateObject(&quot;ADODB.Recordset&quot;)
rswrk.Open sqlwrk, conn, 1, 2
If Not rswrk.EOF Then
datawrk = rswrk.GetRows
rowswrk = UBound(datawrk, 2)
For rowcntwrk = 0 To rowswrk
x_WELLIDList = x_WELLIDList & &quot;<OPTION value='&quot; & datawrk(0, rowcntwrk) & &quot;'&quot;
If cstr(datawrk(0, rowcntwrk)&&quot;&quot;) = cstr(x_WELLID&&quot;&quot;) Then
x_WELLIDList = x_WELLIDList & &quot; selected&quot;
End If
x_WELLIDList = x_WELLIDList & &quot;>&quot; & datawrk(0, rowcntwrk) & &quot;</option>&quot;
Next
End If
rswrk.Close
Set rswrk = Nothing
x_WELLIDList = x_WELLIDList & &quot;</SELECT>&quot;
response.write x_WELLIDList
%>
</font> </td>
</tr>
</table>
<p>
<input type=&quot;submit&quot; name=&quot;Action&quot; value=&quot;ADD&quot;>
</form>
 
I'm still not following what the condition is as to what values to show depending on the text box. Which textbox? Are the two sets of values for the select box in the same table? If so how do you filter them out?

 
My database has a table with two columns [wellid] and [welljacketID]

ie: wellID welljacketID
1 WJ1
1D WJ1
2 WJ1
2D WJ1
4 WJ3
4D WJ3
5 WJ3
5D WJ3

so now...based on which of the welljacketIDs in my Texbox onLoad....wellid dropdown will be populated with related wellids

ie
If the value of my textbox(welljacketid) is WJ1 onLoad of my FORM, my dropdown list will be populated with

<code>
<select name=&quot;list&quot; size=&quot;1&quot;>
<option>1</option>
<option>1D</option>
<option>2</option>
<option>2D</option>
</select>
</code>

If the value of my textbox(welljacketid) is WJ3 onLoad of my FORM, my dropdown list will be populated with

<code>
<select name=&quot;list&quot; size=&quot;1&quot;>
<option>4</option>
<option>4D</option>
<option>5</option>
<option>5D</option>
</select>
</code>
 
Ok I'm with you on the select box, and that would be populated with a simple select statement
sql=&quot;select wellid from wellheaddatabase where welljacketID=&quot; & something

Now the something is the textbox you are talking about, you say onbodyload whether the value is 1 or 2 but what makes it 1 or 2?

 
Textbox is the WelljacketID field in my database Table and the value welljacketID field have been pre-entered
 
Please I just need drop down list to lookup to textbox while populating from database table
 
Please all I am trying do is ......a Dependent dropdown box...
Populating itself with datas related to the value of my textbox (x_welljacketID) when the form is opened by the user.

textbox (x_welljacketID) is automatically populated by my database

Welljackdatabase and wellheaddatabase are tables my Database

This what I have so far... please help me out:

<form onSubmit=&quot;return EW_checkMyForm(this);&quot; action=&quot;welljacketdatabaseedit.asp&quot; method=&quot;post&quot;>
<p>
<input type=&quot;hidden&quot; name=&quot;a&quot; value=&quot;U&quot;>
<input type=&quot;hidden&quot; name=&quot;key&quot; value=&quot;<%= key %>&quot;>
<table border=&quot;0&quot; cellspacing=&quot;1&quot; cellpadding=&quot;5&quot; bgcolor=&quot;#CCCCCC&quot;>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>WELLJACKETID</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_WELLJACKETID&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_WELLJACKETID&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>WELLID</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><%

strsql = &quot;SELECT * FROM [welljacketdatabase]&quot;
Set rs = Server.CreateObject(&quot;ADODB.Recordset&quot;)
rs.Open strsql, conn

x_WELLJACKETID = rs(&quot;WELLJACKETID&quot;)


x_WELLIDList = &quot;<SELECT name='x_WELLID'><OPTION value=''>Please Select</OPTION>&quot;


sqlwrk = &quot;SELECT [WELLID] &quot;
sqlwrk = sqlwrk & &quot;FROM [wellheaddatabase] &quot;
sqlwrk = sqlwrk & &quot;WHERE (1=1) &quot;
If x_WELLJACKETID <> &quot;&quot; Then
sqlwrk = sqlwrk & &quot;AND WELLJACKETID ='&quot;&X_WELLJACKETID&&quot;'&quot;
End If
sqlwrk = sqlwrk & &quot;ORDER BY [WELLID]&quot;


Set rswrk = Server.CreateObject(&quot;ADODB.Recordset&quot;)
rswrk.Open sqlwrk, conn, 1, 2
If Not rswrk.EOF Then
datawrk = rswrk.GetRows
rowswrk = UBound(datawrk, 2)
For rowcntwrk = 0 To rowswrk
x_WELLIDList = x_WELLIDList & &quot;<OPTION value='&quot; & datawrk(0, rowcntwrk) & &quot;'&quot;
If cstr(datawrk(0, rowcntwrk)&&quot;&quot;) = cstr(x_WELLID&&quot;&quot;) Then
x_WELLIDList = x_WELLIDList & &quot; selected&quot;
End If
x_WELLIDList = x_WELLIDList & &quot;>&quot; & datawrk(0, rowcntwrk) & &quot;</option>&quot;
Next
End If
rswrk.Close
Set rswrk = Nothing
x_WELLIDList = x_WELLIDList & &quot;</SELECT>&quot;
response.write x_WELLIDList
%>
</font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>SDVTime</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_SDVTime&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_SDVTime&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>SSVTime</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_SSVTime&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_SSVTime&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>SCSSVTime</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_SCSSVTime&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_SCSSVTime&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>PANELSUPPLYPRESSURE</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_PANELSUPPLYPRESSURE&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_PANELSUPPLYPRESSURE&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>SCSSVHOLDINGPRESSURE</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_SCSSVHOLDINGPRESSURE&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_SCSSVHOLDINGPRESSURE&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>ESDTSEHOLDINGPRESSURE</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_ESDTSEHOLDINGPRESSURE&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_ESDTSEHOLDINGPRESSURE&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>DIDESDTRIPINDICATORTURNREDDURINGTEST</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_DIDESDTRIPINDICATORTURNREDDURINGTEST&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_DIDESDTRIPINDICATORTURNREDDURINGTEST&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>DIDRESETRELAYTRIPDURINGTEST</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_DIDRESETRELAYTRIPDURINGTEST&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_DIDRESETRELAYTRIPDURINGTEST&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>WASTSETESTEDDURINGTEST</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_WASTSETESTEDDURINGTEST&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_WASTSETESTEDDURINGTEST&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>ISAGASCONDITIONINGSKIDINSTALLED</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_ISAGASCONDITIONINGSKIDINSTALLED&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_ISAGASCONDITIONINGSKIDINSTALLED&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>AREPANELFACEGUAGESINTHECORRECTRANGEANDFUNCTIONING</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot; x_AREPANELFACEGUAGESINTHECORRECTRANGEANDFUNCTIONIN
G&quot; size=30 maxlength=50 value=&quot;<%= Server. HtmlEncode(x_AREPANELFACEGUAGESINTHECORRECTRANGEAN
DFUNCTIONING&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>OPENANDINSPECTWELLCONTROLPANEL</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_OPENANDINSPECTWELLCONTROLPANEL&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_OPENANDINSPECTWELLCONTROLPANEL&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>ISHYDRAULICOILLEVELOK</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_ISHYDRAULICOILLEVELOK&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_ISHYDRAULICOILLEVELOK&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>ISCONDITIONOFJACKETANDRISEROK</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_ISCONDITIONOFJACKETANDRISEROK&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_ISCONDITIONOFJACKETANDRISEROK&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>ISBOATLOOPINSTALLED</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_ISBOATLOOPINSTALLED&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_ISBOATLOOPINSTALLED&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>ESDSTATIONTESTDATE</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_ESDSTATIONTESTDATE&quot; value=&quot;<%= Server.HtmlEncode(x_ESDSTATIONTESTDATE&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>ESDHELLIPORTTESTDATE</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_ESDHELLIPORTTESTDATE&quot; value=&quot;<%= Server.HtmlEncode(x_ESDHELLIPORTTESTDATE&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>ESDWELLDECKTESTDATE</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_ESDWELLDECKTESTDATE&quot; value=&quot;<%= Server.HtmlEncode(x_ESDWELLDECKTESTDATE&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>TESTDATE</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_TESTDATE&quot; value=&quot;<%= Server.HtmlEncode(x_TESTDATE&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>MONTHYEAR</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_MONTHYEAR&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_MONTHYEAR&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>FACILITY</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_FACILITY&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_FACILITY&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>AREA</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_AREA&quot; size=30 maxlength=50 value=&quot;<%= Server.HtmlEncode(x_AREA&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>TECHNICIANSNAME</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><input type=&quot;text&quot; name=&quot;x_TECHNICIANSNAME&quot; size=30 maxlength=99 value=&quot;<%= Server.HtmlEncode(x_TECHNICIANSNAME&&quot;&quot;) %>&quot;></font> </td>
</tr>
<tr>
<td bgcolor=&quot;#0099CC&quot;><font color=&quot;#FFFFFF&quot;><font size=&quot;-1&quot;>COMMENTS</font> </font></td>
<td bgcolor=&quot;#F5F5F5&quot;><font size=&quot;-1&quot;><textarea cols=35 rows=4 name=&quot;x_COMMENTS&quot;><%= x_COMMENTS %></textarea></font> </td>
</tr>
</table>
<p>
<input type=&quot;submit&quot; name=&quot;Action&quot; value=&quot;EDIT&quot;>
</form>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top