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

  1. harshil77

    sql query

    Hi pls chk the foll query : first create #temptable and then execute the below query with the specific coloumn name insert #temptable(userid)select userid from table1 union select userid from table2 this will copy distinct records from table1 and table2. No duplicates. HS :) *** ASP/VB/SQL...
  2. harshil77

    sql query

    Hi pls chk the foll query : first create #temptable and then execute the below query with the specific coloumn name insert #temptable(userid)select userid from table1 union select userid from table2 this will copy distinct records from table1 and table2. No duplicates. *** ASP/VB/SQL...
  3. harshil77

    Drop Down menus

    Hi The code for the drop-down should be something like this : <SELECT> <OPTION VALUE=&quot;&quot; SELECTED></OPTION> <%do while not rs.eof%> <OPTION VALUE=&quot;<%=rs(0)%>&quot; SELECTED><%=rs(0)%></OPTION> <%rs.movenext loop%> </SELECT> Hope this solves your problem :) *** ASP/VB/SQL...
  4. harshil77

    Problem in CDONTS

    Hi There seems to be some path problem in that objMyMail.AttachFile(Request.Form(&quot;mailattachment&quot;)) statement. Please check the file path if its rsiding on ther server and give the actual path. :) *** ASP/VB/SQL Programmer (Free Lancing work accepted) *** B-)
  5. harshil77

    CDONTS: No mail sent, but no error msg

    Hi I do not think there is any problem with the code. But hey u can try this out : Set mymail=Server.CreateObject(&quot;CDONTS.NewMail&quot;) mymail.BodyFormat=0 mymail.MailFormat=0 mymail.To=&quot;abc@yahoo.com&quot; mymail.From=&quot;abc@hotmail.com&quot; mymail.Subject =&quot;Hello&quot...
  6. harshil77

    Includes files in ASP

    Hi I would like to know a few things about include files : 1. Can we include a file from a different server? 2. If i have 15 include files on an asp page, will the page speed be faster if compared to the page with 0 include files(i would paste the code from those files onto my asp page)...

Part and Inventory Search

Back
Top