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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbee with a question?HELP PLEASE 1

Status
Not open for further replies.

MAWarGod

Programmer
Feb 15, 2002
352
US
I have a ASP page witch reads from set files to show names
within these files, Now organize these names I would like add color to them witch I have done. But now on the result page I would like to create a input box that would in its action somehow write the write responce some what like this

<% If Handle=&quot;The NAME&quot; then
Response.write &quot;<div><A href=&quot; addy to info about the name&quot;><b><font color='#00FF00'></A>&quot;
end if %>


makeing THE Name a link itself to the data pages within the database I have built

one I would like the name to be a link and two I would like to know to make input boxes to allow Me or a user to write/input new data within the field

currently it does add color to the name but I want to make it easier to input the name into the database

The code look like this as it is now
<% If Handle=&quot;THE NAME&quot; then
Response.write &quot;<b><font color='#00FF00'>&quot;
end if %>
 
Your question is not well formed...please re-ask it more clearly. Thanks. :)
-Ovatvvon :-Q
 
I have set up an ASP page which reads names out of a file and have organized this file e by adding colors to each safed name.
Now I would like to set up an input box on an asp page, where the users put in their names. These inputs should be written into a Session variable, and I would like to reference to the asp page where the names and the colors are safed.

<% If Handle=&quot;The NAME&quot; then
Response.write &quot;<div><A href=&quot;< addy to info about the name&quot;><b><font color='#00FF00'></A>&quot;
end if %>

First I would like the name to be a link and second I would like to know how to make input boxes to allow Me or a user to write/input new data within the field

My current code adds color to the name but I want to make it easier to input the name into the database

The code look like this as it is now
<% If Handle=&quot;THE NAME&quot; then
Response.write &quot;<b><font color='#00FF00'>&quot;
end if %>
 
Sounds like you just want access to an &quot;Input Box&quot; control.

I can't tell you off hand how to do it, don't have my books(just started myself), but I think that is what you want.

TheName = inputbox(&quot;Enter the Name here&quot;)

Maybe?

Rob
Just my $.02.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top