Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

display results on asp form

Status
Not open for further replies.

micawber

Programmer
Dec 10, 2002
71
GB
hi,
i have a asp form that i am sending results to.

at the moment the results are sent to a text box i.e:

<input name="red" type="text" class="main" size="8">

is there a way to display the results as just text without being in a text box?

thanks.
 
is there a way to display the results as just text without being in a text box?
Yes.

How are the results currently "sent" to the textbox?
Does it use ASP with something like this:[tt]
<input name="red" type="text" class="main" size="8" [highlight]value="<%= foo%>"[/highlight]>
[/tt]

Or is it something in client-side script?
 
ASP is server-side scripting. If you have a question about client-side scripting (probably Javascript) you need to ask in the appropriate forum.

Lee
 
oh...but my form/page is .asp and uses asp validation so i thought this would be the appropriate forum?
does anyone know if there is a simple way to show the results as just text without being in a text box?
thanks.
 
If your question is about ASP, then this is the correct forum. If your question is about client-side scripting, then the correct forum would be the one for that language.

Please explain what you want to do with ASP to solve your problem. If you want to use ASP, you'll use one technique. If you want to use VBScript, you'll do it differently. If you want to use Javascript, you'll do it differently than that.

Lee
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top