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. laker67

    Input text box in FOR LOOP with same Name

    Hi, I have a FORM which has a Input text box in a FOR loop . <form name="form1" method="POST" Action="sasd.asp" onSubmit="return validate();"> <% for(i=0;i <3;i++) { %> <input width="150" Type="text" name="NM"> <% }...
  2. laker67

    SQL CONTAINS OPERATOR

    The reason i use * is the table has around 80 columns .out of which 50 columns are full text enabled . so inorder to validate all the 50 columns i use '*' rather than mentioning each column with a 'or' clause.
  3. laker67

    SQL CONTAINS OPERATOR

    Hi!!! I was wondering how CONTAINS work in a dynamic sql statement where i have more than one table to join as below. FULL TEXT IS ENABLED ON TABLE emp This works. select s.id from emp s WHERE CONTAINS(*, '"test"') This does not work select s.id from emp s,emp1 s1 WHERE CONTAINS(*...
  4. laker67

    ServerXMLHTTP ASP.Net

    Hi All,I do have this code in Classic ASP .I'm newbie to ASP.NET . Can anyone please let me know how to use this code in ASP.NET (VB or C#) <% var url="http://xyz/defs.aspx"; var xhttp = Server.CreateObject("MSXML2.ServerXMLHTTP"); xhttp.open("POST", url, false, "", "")...
  5. laker67

    Passing search values from one page to next

    Those are the 2 methods i had in mind and i appreciate that you explained in detail .Thanks alot .
  6. laker67

    Passing search values from one page to next

    Hi, I was wondering if there is a way to save the values selected by the user from a search form . By default i get the first page results from the database . When the user clicks the Next page ,i get from the database the results for the 2nd page and so on. I'm wondering what would be the...
  7. laker67

    Print div tag section

    Thanks for the tip. The only reason i had the div tag in the first place was i needed to show a scroll bar for the contents of the page (since there is a Frame(Header) above that and dont want the header to scroll when the user uses IE Scroll bar) . If i can get the scroll bar anyother way and...
  8. laker67

    Print div tag section

    Hi,I have a div tag as follows. <DIV STYLE="Left:0px;Top: 110px;Position: absolute;Width: 830;HEIGHT: 500px;overflow: auto"> All the contents of the page are inside this div tag. when when i try to use window.print() ; javascript function only the content on the screen or being printed and not...
  9. laker67

    Limit to the number of OR Condition

    Hi,I was wondering if there is a limit to the number of "OR" conditions we can enter in TSQL .
  10. laker67

    Image to base64 ASP.Net

    Please do bear with me,I'm new to ASP.NET .I was wondering if there is a way in ASP.NET to convert an image loaded by the user into base64 format . I dont want to upload on the server . All i want to do is convert into binary stream with base64 format . Thanks!!!!!!!!
  11. laker67

    SELECT OPTION LIST

    Thanks Kaht
  12. laker67

    SELECT OPTION LIST

    Thank you!!!
  13. laker67

    SELECT OPTION LIST

    I have an ASP Page called test.asp which has the following code <FORM name="myform"> <SELECT name="myselect" ONCHANGE="location = this.options[this.selectedIndex].value;"> <OPTION VALUE="test.asp" >ABC</OPTION> <OPTION VALUE="test.asp?t=a">A</OPTION> <OPTION VALUE="test.asp?t=b">B</OPTION>...
  14. laker67

    SELECT OPTION LIST

    I have an ASP Page called test.asp which has the following code <FORM name="myform"> <SELECT name="myselect" ONCHANGE="location = this.options[this.selectedIndex].value;"> <OPTION VALUE="test.asp" >ABC</OPTION> <OPTION VALUE="test.asp?t=a">A</OPTION> <OPTION VALUE="test.asp?t=b">B</OPTION>...
  15. laker67

    How to Brighten an Image on Load(or Onclick)

    Thanks glenmac,BillyRayPreachersSon . I did use Border around and it works .
  16. laker67

    Read Image to binary stream in ASP

    I was wondering if there is any function in ASP/JAVA SCRIPT to read an image that the user is trying to upload to convert into binary stream . I dont want to save the image on disk the usee is trying to upload. All i would like to do is read that image as binary stream and pass it on to the...
  17. laker67

    How to Brighten an Image on Load(or Onclick)

    I was wondering if there is a function or method to Brighten an Image on Load(or Onclick) . The reason i need is i have an image gallery which lists all the images in smaller size on the left side of the webpage . when the user clicks on the smaller size image on left frame , it shows on the...
  18. laker67

    programs open in notepad by default

    I did re-create a new file extension exe type and re-associated with Application . This made all the exe's work . So the problem seem to be partialy resolved . I'm going to do all the virus scan's mentioned by bcastner . Thanks bcastner/linney .
  19. laker67

    programs open in notepad by default

    HKEY CLASSES ROOT\.exe has default .exefile but there was a also a key for contenttype which had the value of application/x-msdownload . There was a subbranch called PersistentHandler which i deleted . Also i didnt get an option of &quot;open with&quot; for exe files .
  20. laker67

    programs open in notepad by default

    No luck, regsrv32.exe still opens in notepad when i try to unregister.

Part and Inventory Search

Back
Top