Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default write in a textbox

    hi all,

    i've got a little problem, how i can write in
    a textbox with ASP ? thank you.

    greetings

    Simone Di Cicco


    Simone Di Cicco Guest

  2. Similar Questions and Discussions

    1. How to make-Textbox to write, Print
      Hi, Do you know how to make a text box where a person can write to it... example question #1: What are the nutrients in an apple? ...
    2. DataGrid write to Textbox in ItemDataBound help.
      Hopefully someone can help me with this. I have a datagrid that has many textboxes that when you go in are empty and users can enter info in them...
    3. write to database without giving write permission to IIS
      Hi there, I have some ASP code that writes to access database. For security reason I do not want IUSER to give write permission to database...
    4. runat="server"....a simple html textbox or a webform server textbox...that is the question.
      I just realized that the code I inherited is using all asp.net server controls (ie. webform controls) and when I try to update textboxes on the...
    5. VERY STRANGE BUG? Adding a textbox control causes other textbox control to fail???
      I've had this happen a few times too. I'm still not positive of what exactly causes it but all that's happening is the control that no longer...
  3. #2

    Default R: write in a textbox

    thank you very much Roland!


    Simone Di Cicco Guest

  4. #3

    Default Re: write in a textbox

    "Simone Di Cicco" wrote:
    : i've got a little problem, how i can write in
    : a textbox with ASP ? thank you.

    Hi Simone...

    ASP is server-side scripting. To write in a textbox, you would just put the
    value of a variable as the value of a text box. Is a text box an input text
    box or a label to you?

    Ex.

    <input type=text value="<%=textvalue%>" />
    <input type=text value="<%=rs.fields("textvalue").value%>" />

    This is not necessarily a db question. m.p.inetserver.asp.general might
    have been a better NG.

    --
    Roland Hall
    /* This information is distributed in the hope that it will be useful, but
    without any warranty; without even the implied warranty of merchantability
    or fitness for a particular purpose. */
    Technet Script Center - [url]http://www.microsoft.com/technet/scriptcenter/[/url]
    WSH 5.6 Documentation - [url]http://msdn.microsoft.com/downloads/list/webdev.asp[/url]
    MSDN Library - [url]http://msdn.microsoft.com/library/default.asp[/url]



    Roland Hall Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139