Hello,
I've posted this in Utter Access, but didn't get a response, so I'm hoping for some help here. I've been at this problem for hours and am hoping there is a simple fix. I'm using MS Access 2003 and IIS v6.
I'm new to ASP, but I coded with html and asp against MS Access to allow the user to do data entry. Problem is, when I populate the text boxes, nothing shows in them. However, if I double-click, they turn into list boxes and show everything I tried to fill them with during the entire session (going back and forth testing). They also show my login ID. It's freaky! Following is a snippet of code. Can you tell me what might be wrong with it to cause this reaction? I might add that prior to this piece of code, I had built two drop-down boxes that fill correctly, except they don't list the default as they should.
.....snipped
I've posted this in Utter Access, but didn't get a response, so I'm hoping for some help here. I've been at this problem for hours and am hoping there is a simple fix. I'm using MS Access 2003 and IIS v6.
I'm new to ASP, but I coded with html and asp against MS Access to allow the user to do data entry. Problem is, when I populate the text boxes, nothing shows in them. However, if I double-click, they turn into list boxes and show everything I tried to fill them with during the entire session (going back and forth testing). They also show my login ID. It's freaky! Following is a snippet of code. Can you tell me what might be wrong with it to cause this reaction? I might add that prior to this piece of code, I had built two drop-down boxes that fill correctly, except they don't list the default as they should.
.....snipped
Code:
<td><input type="text" name ="DonorBusName" value = "<%=DonorBusName%>"/><%=DonorBusName%></td>
<td><input type="text" name="DonorEmail" value = "<%=DonorEmail%>"/><%=DonorEmail%></td>
<td><input type="text" name="DonorWebsite" value = "<%=DonorWebsite%>"/><%=DonorWebsite%></td>
</tr>