Helloo,
just wanted a definite solution on how to make the properties of a table editable, one specific column built in SQL, which in this case is integer values.
So far ive learnt that you would need to set a form Input element:
<input type="textbox" value="3" name="intSent1001">
for each row.
^ im not too sure on how to use this
Help would be greatly appreciated, still learning asp
Thanks GA
just wanted a definite solution on how to make the properties of a table editable, one specific column built in SQL, which in this case is integer values.
So far ive learnt that you would need to set a form Input element:
<input type="textbox" value="3" name="intSent1001">
for each row.
^ im not too sure on how to use this
Code:
<table cellspacing="2" cellpadding="2" border="0" class="BoxOutline">
<tr>
<td class="HeaderCell">LOCATION</td>
<td class="HeaderCell">COMPANY</td>
<td class="HeaderCell">CIRCUIT</td>
<td class="HeaderCell">TOWN</td>
<td class="HeaderCell">SENT</td>
</tr>
<%
dim ls_Class
ls_Class = "DetailsCell"
while not (lo_DataRst.BOF or lo_DataRst.EOF)
%>
<tr>
<td class="DetailsCell"><%= lo_DataRst("strLocation") %></td>
<td class="DetailsCell"><%= lo_DataRst("strCompany") %></td>
<td class="DetailsCell"><%= lo_DataRst("strCircuit") %></td>
<td class="DetailsCell"><%= lo_DataRst("strTown") %></td>
<td class="DetailsCell"><%= lo_DataRst("intSent") %></td>
</tr>
Help would be greatly appreciated, still learning asp
Thanks GA
