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 TouchToneTommy 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: MoaD
  • Content: Threads
  • Order by date
  1. MoaD

    screen size using ASP

    Is there a way using purly ASP to determine a users screen size. I don't want to use any third party scripts etc... and I don't want to use javascript Im just want to know if ASP can handle this and how if possible Thanks in advance
  2. MoaD

    HELP WITH SQL STATEMENT

    Ok i have a table with a date/time field in an access database. i want to extract only the date but i want to do it all in the sql statement so what im trying is this strSQL = "SELECT DISTINCT SUBSTRING( datDate, 1, 10 ) FROM tblDate" asp is not recognizing the substring command in...
  3. MoaD

    Updating autonumbers

    Just wanted to know if its possible to fix my autonumber count in some of my tables i.e. 1 2 3 10 12 13 There just way out of wack and for some reason it bugs me ( sigh! )
  4. MoaD

    ASP Refresh

    How do i determine if a user is refreshing the page. I want to know this cause everytime a user view the page a counter is increased but i only want to increase the counter if it from click a link and not just refreshing the page thanks in advance
  5. MoaD

    pass variable to function

    ok i have a function called dateFormat() i want to send a date so i can format it. I have the date stored in a variable. Now i want to send along a type value i.e. function dateFormat( date, type ) End Function now this is what im sending <%=postDate, 1%> the problem is whenever i try to...
  6. MoaD

    access text field size

    Is there a way to change the field size for the data type text to > 255
  7. MoaD

    passing variables

    Ok i have 2 asp pages from one page i have a link like so in pagename1.asp <A HREF=&quot;pagename2.asp?thread=<%=value%>&quot;>Link</A> heres the problem in pagename2.asp im using thread = Request.QueryString(&quot;thread&quot;) to get the value passed. Ive tested that the value is actually...
  8. MoaD

    Formatting a date

    Ok i have a table which stores a date in the medium format ( i.e. 04-Apr-02 ) but when i write it to a page asp shows it as 04/04/02? heres my code <%=dbExecSQL( 0 )%> that is the date from the table i want the date to show in medium format 04-Apr-02 any help is appreciated
  9. MoaD

    Adding a record to access

    When a user wants to download something from my page i want them to enter an email address and store it in an access database. the code below is what i have right now but the SQL statement isn't working. Any help would be great Table name = tblEmail Field = txtEmail <% emailAdd =...

Part and Inventory Search

Back
Top