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!

Recent content by laker67

  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 .

Part and Inventory Search

Back
Top