Click here to Skip to main content
15,900,816 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have code like this:


HTML
<input type="text" name="tradename" size="40" maxlength="40" value=<%=rs1("tradename")%>/>    <%=rs1("tradename")%>/>



this code will display one record in text box and other outside the box having same results

when record in database is empty then the record will not display

my question is ? if record is empty then textbox will also become invisible.
Posted
Updated 6-Jul-12 1:18am
v2
Comments
Om Prakash Pant 6-Jul-12 7:43am    
what you want to perform is not clear..
If the value in <%=rs1("tradename")%> is null then you don't want the textbox to be displayed. is this correct?
ZurdoDev 6-Jul-12 8:26am    
Just put an if statement around it.

Dear Friend,

You can go this.

<% if rs1("tradename")<>"" then %>

<input type="text" name="tradename" size="40" maxlength="40" value=<%=rs1("tradename")%>/>

<% Else %>

No Records Found

<% End if %>
 
Share this answer
 
v2
hello,

Use the isNull() function, for instance

XML
<% if Not IsNull(rs1("tradename")) then %>
            <input type="text" name="tradename" size="40" maxlength="40" value=<%=rs1("tradename")%>/>    <%=rs1("tradename")%>/>
         <% end if %>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900