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 SkipVought 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: *

  • Users: junnantes
  • Order by date
  1. junnantes

    asp string handling

    strings, try to give us some example of your code. from there we could help you. later, <p>Jun Nantes<br><a href=mailto:bhudz@junnantes.com>bhudz@junnantes.com</a><br><a href=http://www.junnantes.com>Jun Nantes Official Internet Site</a><br>
  2. junnantes

    Help with Select statement!!!

    Daniel, sorry about the UPPER function it should be UCASE. thnx, <p>Jun Nantes<br><a href=mailto:bhudz@junnantes.com>bhudz@junnantes.com</a><br><a href=http://www.junnantes.com>Jun Nantes Official Internet Site</a><br>
  3. junnantes

    if then else basically how to do it?????

    someone, Request(&quot;xx&quot;) is just a shortcut for Request.Form(&quot;xx&quot;) so either is applicable. just a tip! <p>Jun Nantes<br><a href=mailto:bhudz@junnantes.com>bhudz@junnantes.com</a><br><a href=http://www.junnantes.com>Jun Nantes Official Internet Site</a><br>
  4. junnantes

    Help with Select statement!!!

    Daniel, ya Nic was right about the terminology, column & field mean the same thing. now, you are asking how should we call the one beneath the column, well it is called row or record or data. thanks for trying my codes, hope that works. addt'l tip: if your not sure of the case of your data...
  5. junnantes

    ASP does not work

    FunGuy, try to remove the virtual directory where your asp pages reside. then create a new virtual dir. then map again the physical drive/path of your pages. this might work!!! hope this help, <p>Jun Nantes<br><a href=mailto:bhudz@junnantes.com>bhudz@junnantes.com</a><br><a...
  6. junnantes

    Help with Select statement!!!

    chassid, from your statement this is my understanding... here is the SQL Statement: Dim strQuery as String strQuery = &quot;Select chapter from <table> where chapter='south'&quot; 'Open a recordset 'statements follow <table> = table to be used. hope this help, <p>Jun Nantes<br><a...
  7. junnantes

    Asp not running from html!

    ASP is server-side therefore you have to save .asp page to the web server root dir (&quot;inetpub/wwwroot&quot;). You can create your own folder inside. hope this help, <p>Jun Nantes<br><a href=mailto:bhudz@junnantes.com>bhudz@junnantes.com</a><br><a href=http://www.junnantes.com>Jun Nantes...
  8. junnantes

    Insert Into Access Database

    ronis, you have a problem with your SQL statement: strSQL = &quot;INSERT INTO Table (Field1, Field2) VALUES ('&quot; & strField1 & &quot;', '&quot; & strField2 & &quot;')&quot; try this: it should work!!! strSQL = &quot;INSERT INTO Table (&quot; & Field1 & &quot;,&quot; & &quot;Field2&quot; &...
  9. junnantes

    URGENT - Error Message!!

    you didn't write the code... you may have a syntax error in your SQL statements. kindly post it for review. regards, <p>Jun Nantes<br><a href=mailto:bhudz@junnantes.com>bhudz@junnantes.com</a><br><a href=http://www.junnantes.com>Jun Nantes Official Internet Site</a><br>
  10. junnantes

    Calling a field

    try to view the code for the other .asp page coz i supposed that this line was omitted.. <% Application(&quot;CompoundClinicalD&quot;) = rs(&quot;CompoundClinicalD&quot;) %> hope this help, <p>Jun Nantes<br><a href=mailto:bhudz@junnantes.com>bhudz@junnantes.com</a><br><a...
  11. junnantes

    where is the error

    1) guestg was right! make method=post and action=&quot;<name of your asp page>&quot; 2) i assume you're using only one page and let's say it's name is &quot;sample.asp&quot; 3) you need to use <if..else..end if> statement to test if the request object has something on it after the user click the...

Part and Inventory Search

Back
Top