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 Shaun E 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: noyes99
  • Content: Threads
  • Order by date
  1. noyes99

    VAP migration to WPS

    Hi, Am a newbie to WAP. I used to work with Vignette Story Server and then moved to Vignette Application POrtal. We now need to move the website from VAP to WPS and I was wondering if someone can guide me to some pointers on the web. How do we go about managing the whole process. Any help would...
  2. noyes99

    Paid Content Available to Search engines but hidden from users

    hi, I am a newbiew in this area. I was wondering if there is a way we can modify robots.txt such that the content is available to the search engines and not available to the real users. I was wondering if people know what are the common techniques that people use in instances such as these. Thanks
  3. noyes99

    Help with XSLT - counting Number of characters in the previous para

    XSLT newbie here. I want to accomplish the following. If paragraph is the second one, and it has less than 200 characters, i want to display the next one. Here is what I have <xsl:if test="count(preceding-sibling::p) = 2"> <p> <xsl:apply-templates /> </p> </xsl:if>...
  4. noyes99

    Updating the database with two parameters : newbie looking for help

    I have a database, where I need to make an update like X = ''' UPDATE TABLE A SET COL1 = 'VAL1', COL2 = :2 WHERE COL3 = :1''' I am making a call like c.execute(X, 123, 3) and it is not working. where c is db.cursor() and I am connecting using DCOracle2. Can someone help? I have...
  5. noyes99

    regular expressions. Need help

    I am looking for some help with a regular expression. I have a scenarios, where I have strings, with <table> within <table> tags within them. I need to replace the outermost table tags with <pre><table>. How do I write this reg ex. What I am thinking of doing is this. Take a string. Replace...
  6. noyes99

    Help with regular expressions

    I am looking for some help with a regular expression. I have a scenarios, where I have strings, with <table> within <table> tags within them. I need to replace the outermost table tags with <pre><table>. How do I write this reg ex. What I am thinking of doing is this. Take a string. Replace...
  7. noyes99

    HTML parser

    hello everyone. I am looking to parse some HTML to make it well-formed, and I was wondering if anyone has has written an HTML parser in Coldfusion or could point me to any links. TIA.
  8. noyes99

    Activating flash on mouse rollover

    Hi, I need a bit of a help. I am trying to display a flash file ( or a gif if no flash ) and it seems to be working fine on IE6. yet it doesn't work on netscape6. Could any one help me out and point out what is wrong with my code? Thanks a lot, much appreciated. Code...
  9. noyes99

    Closing the popup window

    Hi everyone, I have created a popup that has an image map in it, and I need to close that popup when someone clicks on a link, and redirect the parent window to the link. I have written some code that works fine on IE, but doesn't work on Netscape and Mac. Could someone help me debugging it...
  10. noyes99

    Maxlimit of TEXTAREA on Mac

    hi, we have some a form post that works fine on Windows, but when I try to do a similar form submit on MAC however, the page does not take more than a certain number of character. This causes us to lose some stuff that we thought we pasted on the page. Here is the code we are using...
  11. noyes99

    Multipart Email Messages

    Hi, Could someone help me with the basic's of creating a Multipart message? I need to be able to create a multi part message which support both HTML/text mail clients. I haven't been very successful yet, because my email ends up displaying both HTML as well as the text part of the message Thanks
  12. noyes99

    OnRequestEnd.cfm

    I have a file, and I want to call a custom Onrequest.cfm for this file. But it looks like my program is looking for an OnRequestEnd.cfm in some other directory. How do I call the OnRequestEnd.cfm that I have created? I am pretty new to CFM and hence, I guess I am just asking the basics :) - n
  13. noyes99

    Accessing URL variables

    I am trying to pas some variables in the url, whoch would look something like this http://www.mysite.com/mypage?a=var1&b=var2&c=var3 How do i access the values of these variables a/b/c on my page. I am basically a vignette developer, and am pretty new to cold fusion. any help wpuld be...
  14. noyes99

    Server Time Using Javascript

    Hi, Could someone help me with this one please. I need to find out the time on my server ( not clients machine ), using javascript, while executing a page. How do I go about doing it? Thanks in advance. - n
  15. noyes99

    figuring out where a file is called from

    Hi, I need a bit of a help in trying to figure out something with Coldfusion. I have this file abc.cfm and this is like a footer to the page. how do I figure out the template that is calling this file. thanks in advance for the help
  16. noyes99

    Global variable

    I am ( as you'll soon figure out) quite new to ColdFusion. I am basically a Vignette Story Server developer. What I am trying to do is to set a variable as a global variable so that I can retrieve its value anywhere within the page. How do i go about doing this? thanks PS : I know about...
  17. noyes99

    How do I read session cookies in Coldfusion

    hi, i am totally new to coldfusion. could someone tell me how do I read session cookies in coldfusion? i used to work with vignette, but i need to do a bit of stuff with cold fusion. any help would be greatly appreciated. thanks
  18. noyes99

    Netscape 2 and IE3 : noscript not supported?

    Hi, I have read that Netscape 2 and IE3, even though they support the <script> tag, do not ignore the <noscript> tag, the result being that content of both <script> and the <noscript> tags are displayed. Now, my question is, does any one know what other browsers behave that way? ie. does...

Part and Inventory Search

Back
Top