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

    function CONTAINS

    Hi, I'm trying to create a query with CONTAINS(FIELD,'"wordToSearch*"') that should have to work like 'FIELD LIKE '%wordToSearch%' but I don't get the same results. In fact, CONTAINS returns less rows than LIKE. Where is the error? Thanks
  2. fayna

    Maximum size of post data

    Hi, I'm trying to post a large amount of data but, after submitting the form, all the data are lost. I know there's no size limit with post, so, could it be a server's limitation? Where's the problem? Thanks
  3. fayna

    Can you recommend me a good WYSIWYG HTML editor ?

    Please, can anyone recommend me a good WYSIWYG HTML editor? I've heard only good things about InnovaStudio. Thanks
  4. fayna

    force login prompt

    Hello, I'd like to know if it's possible to force navigator's login prompt using JavaScript. Thanks
  5. fayna

    link into textarea

    Hi, I'd like to know how to insert a link into a textarea, if it's possible. Thanks
  6. fayna

    Type conversion

    Hi, I need to convert a text field into a numeric field.I've tried to use 'CONVERT' but I get an error. How can I convert data types? Thanks
  7. fayna

    Problem with select and lines

    Hi, The text of the elements of my select is too large and I'd like to divide it in two lines. I've tried to insert <br> tag but it has no effect. How can I resolve it? Thanks Fayna
  8. fayna

    Retrieve page content with XMLHTPP

    Hi, I'm trying to retrieve an ASP page content but I have the following problem: when I run the code bellow on my computer's server it works without any errors, but when I run it on my company's server I get an 404 - File not found error. Where's the problem? Here's the code: <% option...
  9. fayna

    Microsoft.XMLHTTP

    Hi, I'm trying to save a web page content by using Microsoft.XMLHTTP. I can write it into a new page but I get an error when I write it in a file.Here's my code: Response.Buffer = True Dim objXMLHTTP, xml,strHtmlText Dim FSO,objFile,f Set xml = Server.CreateObject("Microsoft.XMLHTTP") xml.Open...
  10. fayna

    problems with resolutions

    Hello! My page has several layout tables that don't resize when I change the resolution. How can I solve this? Thanks
  11. fayna

    print the content of a window

    Hello! I'm trying to print the content of a pop-up with this code in the <a> of an image:javascript:print() It works in NS 6 but it doesn't in IE 6 Where is the problem? Thanks
  12. fayna

    show data in new window

    Hello!I have one page that redirects to another one this way:header(&quot;location:other_page.php?variable1=...&quot;) Other_page contains this code: ...include(&quot;header.php&quot;);include(&quot;footer.php&quot;) Is there a way to show this data in a new window? Thanks
  13. fayna

    Case sensitive data

    Is there any configuration option that lets MySQL distinguish different cases in tables' data? Thanks
  14. fayna

    problems with sessions

    Hi!This is my problem: I start a session in a certain page, but when I refresh this page it starts another session and I can't access the first one. This occurs when session_use_cookies is set to false, when it's set to true I have no problems. Is there a way to solve this? Thanks
  15. fayna

    having problems with addition!?

    Hello, I never thought someone could have problems adding two numbers, but I have them. Here's some sample code: var op1 = &quot;119.88&quot; var op1_1 = &quot;7&quot; var op2 = &quot;119.88&quot; var op2_2 = &quot;4&quot; var res1 = parseFloat(op1) * parseInt(op1_1) var res2 =...
  16. fayna

    detect window closing

    hello, i'd like to perform some actions when my window is closing or reloading, but I don't know how to detect these events, is there a way to do it? thanks
  17. fayna

    script tag into a string

    Hi!I'm trying to insert <script> and </script> tags into a string this way: <script> funtion myFunction(){ str = &quot;<html><head><title>...</title><script>..</script>.....&quot; } </script> But I get an error because <script> and </script> are not recognized like part of the string. How...
  18. fayna

    read child window data

    Hi!I'd like to know how to read child window data from its parent. Thanks

Part and Inventory Search

Back
Top