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!

Search results for query: *

  1. needhelpquick

    Yes/No value - can the value change?

    Thanks for your reply. What I am trying to do is display a jpg when the value = Yes in a web page instead of displaying "yes". On the database form when the user checks a Yes then the value "pict.jpg" gets submitted to the database not the Yes/No value - possible? Cheers Richard
  2. needhelpquick

    Yes/No value - can the value change?

    Hope someone can help me. I have a Yes/No checkbox in Access 97 and I want to make the Yes value = "pict.jpg" and the No value to = "" if anyone can help I would really appreciate it Regards Richard
  3. needhelpquick

    email link from database driven web page

    Thanks for your reply. I found the solution was easier than I was first led to believe - <a href=&quot;mailto:<%=recordset1.feilds.item(&quot;email&quot;).value%>&quot;><%=recordset1.feilds.item(&quot;email&quot;).value%></a> I think I was led down the wrong path right from the start. Thanks...
  4. needhelpquick

    email link on db driven page

    I finally figured out what it was - it's simply - <a href=&quot;mailto:<%=(Recordset1.Fields.Item(&quot;email&quot;).Value)&quot;%>&quot;><%=(Recordset1.Fields.Item(&quot;email&quot;).Value)%></a> Just thought you may be interested Cheers Richard
  5. needhelpquick

    email link on db driven page

    Thanks, I tried that but it still didn't work. Any other ideas? <% response.write &quot;<a href=&quot;&quot;mailto:&quot;;;&quot; & (Recordset1.Fields.Item(&quot;&quot;email&quot;&quot;).Value)&quot; & &quot;>To Email, Click Here</a>&quot; %> The text is linked just to the mailto: and not the...
  6. needhelpquick

    email link on db driven page

    Hi there, I have a problem in that I can't get the email results from a database on to a web page so that the emal address is clickable and loads up the email software just as mailto: does. One guy gave me this code but it still doesn't work <% response.write &quot;<a...
  7. needhelpquick

    email link from database driven web page

    Thanks for that but the result is still the same. The &quot;TO email click here&quot; text is underlined but the mailto: is blank. The &quot;&quot;email&quot;&quot; thing is the part that takes the email address from the database and displays it on a web page. I want that to be underlined...
  8. needhelpquick

    email link from database driven web page

    Hi there, I have a problem in that I can't get the email results from a database on to a web page so that the emal address is clickable and loads up the email software just as mailto: does. One guy gave me this code but it still doesn't work <% response.write &quot;<a...
  9. needhelpquick

    Ultradev - updating db error 80040e14

    Can anyone help me please, I can't figure out why I can't update the database. Microsoft OLE DB Provider for ODBC Drivers error '80040e14' [Microsoft][ODBC Microsoft Access Driver] Cannot update '(expression)'; field not updateable. /edit.asp, line 91 Thanks in advance Richard
  10. needhelpquick

    Email all on database from web form?

    Thanks, that is helpful. Cheers Richard
  11. needhelpquick

    ASP email

    Does anyone have simple ASP email code which will take more 'Input' boxes than the standard - To, From, Subject, Text fields. I need to add some more such as - Address, Phone etc. Many Thanks Richard
  12. needhelpquick

    need to create simple cookie fast

    this is the result of a calculation document.calculateForm.total8.value = totalCost which gets displayed in a HTML Input Box. I need to take the 'total8' value and store it in a cookie, then retrieve it from another page. I have no idea how to do this and can't find any tutorials which are this...

Part and Inventory Search

Back
Top