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 strongm 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
  • Order by date
  1. fayna

    function CONTAINS

    SQL Server Query Analyzer searches in this field without any error using: FIELD like '%binter%' OR CONTAINS(FIELD,' "binter" ') and the search is really fast!
  2. fayna

    function CONTAINS

    It's too much text. This is one of them. I hope it can be useful. If not, I'll send you more. I search the text Binter. Thank you. <p> <span style="FONT-SIZE: 8pt; FONT-FAMILY: Verdana"> <span style="FONT-SIZE: 8pt; FONT-FAMILY: Verdana"> <span style="FONT-SIZE: 8pt; FONT-FAMILY...
  3. fayna

    function CONTAINS

    Thanks but I get 2018 rows with CONTAINS and 2026 with LIKE. The field contains html data. Perhaps CONTAINS isn't valid for this search? I thought it would treat the data like text, no matter it contains html or not...
  4. 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
  5. 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
  6. 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
  7. fayna

    force login prompt

    I only want users to change the initial session user and password because some of them have different users for different applications of the intranet. Thanks again
  8. fayna

    force login prompt

    Windows's prompt for user and password. I'd like to force this prompt to appear from code, regardless security settings. Thanks
  9. fayna

    force login prompt

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

    link into textarea

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

    Type conversion

    Thanks a lot!It worked with val function :-D
  12. 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
  13. 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
  14. fayna

    Retrieve page content with XMLHTPP

    Hi DNG, I think it could be behind a firewall.
  15. 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...
  16. 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...
  17. 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
  18. 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
  19. fayna

    Validate numeric data vs. alpha

    Try this: function alpha(value){//for example text.value var re = /[0-9]/ //any digit? if ((value.search(re)!= -1)){//found any digit at any position ..your code on error } else ..no digits found .ok}
  20. 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

Part and Inventory Search

Back
Top