Search results

  1. J

    OS-DIR for shared network folder

    I have the following code that reads a directory on my IIS webserver and places the files in the directory in a temp file. I need to get a list of actual documents in the directory so that I can create links to the documents on my web page created by webspeed. This works as long as am placing...
  2. J

    Filling HTML form field from DB field

    I am using a DB field to pre-fill an HTML form field. The DB field is "cust-name" and cust-name = "Mike Smith". A portion of the Webspeed code for the form data cell is: {&OUT} "<td><input type=text name=cust-name size=30 value=" cust-name "></td>". When Webspeed displays the form only "Mike"...
  3. J

    Return to previous page

    I have an existing website and am adding webspeed to the site to make some of the pages active. I will display an html page (let's call it callingpage.html) that runs code test.w. My code displays several other pages generated by webspeed. After displaying several pages generated by webspeed...
  4. J

    Using "assign substring" in Webspeed

    Why does the following code stop the compile of my Webspeed .w program? define var field-name as char format "x(20)" no-undo. assign substring(field-name,1,1) = "Y". Is the substring assign an illegal statement in Webspeed? Jim
  5. J

    form <input .... value="xxxx yyyy" .... >

    How do I pre-fill a text box form element with a variable that has a space imbeded in it? My code follows: assign contact-name = "Bill Smith". {&OUT} " <tr> <td><input type=text name=name size=30 value=" contact-name "> </td>...
  6. J

    Webspeed "location =" syntax

    Where would I find documentatoin on the following code for Webspeed? {&OUT} "<script> location = 'ws_code.w'; </script>". I am interested in the "location" portion of the script. Jim
Top