May 9, 2002 #1 choohean Technical User Jan 15, 2002 57 MY I got a code like this! How do I change the width for the textbox? Please... Response.Write "<td><input name=service_id value="&rs("service_id"&" readonly></td>" & vbCrLf Thanks in advance!!!
I got a code like this! How do I change the width for the textbox? Please... Response.Write "<td><input name=service_id value="&rs("service_id"&" readonly></td>" & vbCrLf Thanks in advance!!!
May 9, 2002 #2 hiteshkapadia Programmer May 7, 2002 8 US Hi, You can write the size attribute for the text box Hitesh Upvote 0 Downvote
May 9, 2002 Thread starter #3 choohean Technical User Jan 15, 2002 57 MY I tried like this: Response.Write "<td><input name=service_id width=20px value="&rs("service_id"&" readonly></td>" & vbCrLf it didn't work! I tried : Response.Write "<td><input name=service_id style="HEIGHT: 22px; WIDTH: 79px" value="&rs("service_id"&" readonly></td>" & vbCrLf got error come out! Can you help me to fix me coding! Please.... Upvote 0 Downvote
I tried like this: Response.Write "<td><input name=service_id width=20px value="&rs("service_id"&" readonly></td>" & vbCrLf it didn't work! I tried : Response.Write "<td><input name=service_id style="HEIGHT: 22px; WIDTH: 79px" value="&rs("service_id"&" readonly></td>" & vbCrLf got error come out! Can you help me to fix me coding! Please....
May 9, 2002 #4 Mighty Programmer Feb 22, 2001 1,682 US Response.Write "<td><input name=service_id size=20 value="""&rs("service_id"&""" readonly></td>" & vbCrLf Mighty Upvote 0 Downvote
Response.Write "<td><input name=service_id size=20 value="""&rs("service_id"&""" readonly></td>" & vbCrLf Mighty
May 9, 2002 Thread starter #5 choohean Technical User Jan 15, 2002 57 MY Thanks a lot.. Upvote 0 Downvote