Accessing HTML Pages w/out KM

I need to upload RoboHelp files to the Portal. I’ve tried KM but this isn’t a viable solution since the default RoboHelp page refers to multiple js, html, and gif objects. KM requires that an html page reference objects with a complete URL path even though they all reside in the same directory. RoboHelp has generated 222 + files.
I don’t recall the location on the Portal server where I can create and upload files to a directory in the Portal. This way each page doesn't require a complete URL path to each object.

Peter, that was correct. In the Portalapps directory is where all the par files reside. So I created a new directory CRM/help then uploaded the files. The URL path which I use for my iView is http://xxx/irj/portalapps/crm/help/default.htm. Now I can call the default page which it turns calls the logical path for the js, html, or gif object. The complete URL path to each object is no longer required.

Similar Messages

  • Accessing html pages outside tomcat server

    Hi
    I have my images and html pages stored in a directory outside the server. This is because of the WAR file. Other people are developing the html pages and uploading them. The name of the html file is in a mysql table.
    With the name I have to show that page.
    I have figured out how to display the images that are out side the server on my jsp pages .
    how do I do the
    <a href="????????<=%fileName%> ">View me</a>
    if they are on c:/thedata/pages/stories/fileName.html for example to use the local host place they are.
    Lena

    The client cannot access local files outside the web container by a simple request. Better way is to create a FileServlet or so which streams the requested file from the local path to the client.
    The ImageServlet snippet provided here might be useful to get some insights in streaming local files to the client: http://balusc.xs4all.nl/srv/dev-jep-img.html
    Then let the FileServlet listen on /file and change the request to<a href="file?name=<%=fileName%>">View me</a>Be careful with this. Also see the comments in the code and the "Security considerations" at the bottom of the ImageServlet article.

  • Access HTML Pages from Forte Applications

    We are currently looking at how to redevelop our online help facility for a
    Forte application. We are investigating the use of HTML pages.
    Has anyone written a Forte application that opens particular HTML pages? If so,
    how was it done?
    Regards,
    Steve Isaac
    Senior Consultant, Information Services Group
    Hydro Electric Corporation of Tasmania
    4 Elizabeth St, Hobart, Australia, 7000
    Phone : +61 03 6230 5161
    e-mail: [email protected]

    We have created the idea of an OnLineAssistant that uses HTML pages to drive
    help in a Wizard-like fashion.
    We use an embedded ActiveX browser control in a Forte window to display the
    HTML pages. The pages are launched by passing the application, window, and
    widget name to the OnLineAssistant window, which uses the information to load
    the correct page.
    For example: an application screen for entering customer name and address
    passes it's information to the on-line assistant, which links and displays the
    page associated with that particular step of a task wizard defined for that
    widget. The ActiveX control then allows the user to link into any of the
    other pages associated through standard HTML.
    This context-sensitive mechanism is also used to launch on-line help (without
    the task orientation) at the user's request.
    One of the benefits of this approach is that we can put the message passing
    into a generic framework ancestor without making any application code changes,
    and the OnLineAssistant HTML pages can then be created by non-programmers and
    deployed independently from the application, and HTML can do most of the
    navigation work.
    -DFR

  • How to mark a HTML page as "Out of date"

    Hello!
    I need a method to prevent the usage of the Back button in web browsers by my web users, and prohibit them to move back through old web pages. During this moving they should view "Page out of date" messages instead of old contents of previous pages.
    How can I do it? Any ideas, links, samples are welcomed!
    Thanks a lot!
    Alex

    One way to get unathorized access to a web application is the usage an old stolen application's web page. My task to prevent it. An old web page may contains some hidden fields with encrypted keys, or other protection data.
    We should analize this info each time on the server side to distinguish an old (may be stolen) page, and the new (from a valid user) one.
    But the usage of such kind protected pages is complex enough. To reduce this complexity I just want to mark all web pages as "expired". Then my users will see "Page out of date", when they try to get back to old pages in browsers. They cannot view "a valid old page" at all using browsers (they will get only the "Page out of date" page), and, concequently, they cannot send to my server requests using old links, and old protection keys. Any old data my be stolen data only using this way.
    In this case the protection algorithm on the server side is simplified. Now I have only one valid page in my application (the latest page).
    To expire the web page we should
    1) create the HTTP header like this:
    HTTP/1.1 200 OK
    Date: Fri, 30 Oct 1998 13:19:41 GMT
    Server: Apache/1.3.3 (Unix)
    Cache-Control: max-age=3600, must-revalidate
    Expires: Fri, 30 Oct 1998 14:19:41 GMT
    Last-Modified: Mon, 29 Jun 1998 02:28:12 GMT
    ETag: "3e86-410-3596fbbc"
    Content-Length: 1040
    Content-Type: text/html
    2) provide on the server side some functionality to prevent just
    regeneration.
    My question was about samples, or ideas on this way to protect web apps for XE.
    It may be very useful, because I cannot find a legal way to use HTTPS (SSL) with XE.
    Thanks!
    Alex

  • Problem accessing HTML pages using Tomcat 4

    I am very new to programming. I have created an html file (ThreeParamsForm.html) and placed it in development directoy. I am unsure of how to access that file. When i am typing http://localhost/ThreeParamsForm.html it is giving me HTTP Status 404 error. I have tried using servlets in similar way it is working fine. Please help.....

    did you include the port number if other than 80 ?
    i.e. http:\\localhost:8080\whatever

  • Passing parameters in a html page using xwd_tmppg.create

    We are in the initial stage of Developing a OLAP Web Application using
    Oracle Express Web Agent 6.3.2,Oracle Express Administrator6.3.2.
    Flow of our screens are:-
    We have a login screen that authenticates user entry to access his assigned role screen.Based on the role the user selects we will be listing out the analysis in a screen that the user could access.
    Express Programs are used to create Role and Analysis screen.
    User logged information is passed from login to role screen and to
    analysis screen using XWD_APPPG.CREATE that accepts parameters.
    Moreover this function can only be used to create html page with out
    data views.
    Now let us come to our problem-
    We need to take the user from analysis screen to detailed data view screen that shows the OLAP cube with a back & exit button.As explained earlier you need to use the function XWD_TMPPG.CREATE to create dataview.It is not possible to pass parameters through this function.This function accepts .html as the only parameter.But we need to pass the userid info to get back to analysis screen for the user to select the next analysis.I need the user logged info available in the template file.
    Is there any solution for this problem or any other approach to capture the user logged info in the template file???

    Hi Aneel,
    Thanks for your informative suggestion on how to receive data from
    previous page on to the template page using LOCATION.SEARCH.SUBSTRING
    function.
    I could very successfully get the userid information by implementing
    this method within the SCRIPT boundary.
    I also want to pass this value to a express program embedded
    within the <!--EXPRESS call foot(userid)--> so that it will enable the
    user to go back to List of analysis page.her my footer program will
    inturn call the Analysis Page with the userid information.That's my
    whole idea.
    I tried the following methods to acieve my end result-
    1)Tried to store the value in a local variable in the template & passed
    it to the express program -- Error thrown was "userid is not attached in
    the database"
    2)Directly specifed location.search.sunstring in the express program..
    Still the same error was thrown
    3)Thought of storing the value in the name of hidden object .Still this
    will not work out because i need to declare the object in the FORM..
    Moreover the value is avialable wihin the JAVA SCRIPT range.Out of this
    range template is not able to identify this value.
    Any idea Aneel form your end.
    Can you let me know how to use hidden object in achieving the result.
    I have been working very hard for quite sometime.
    Advance thanks.
    Nanda Kishore

  • Trying to Access SharePoint 2013 Rest Api in HTML page but getting Mime Type Exception with Status Success

    I am trying to invoke the SharePoint Rest Api using HTML page. I have included the Access Control Allow Origin to the web.config file. I am getting Readty State 4 and
    Status Success but still I am getting the below error.
    Refused to execute script from 'http://<server>/_api//web/lists?callback=jQuery172045857910416089_1430217181282&_=1430217363882' because its MIME
    type ('application/atom+xml') is not executable, and strict MIME type checking is enabled.
        <script>
            $(document).ready(function () {
                $("#KMPDiscussions").click(function () {
                    //$.support.cors = true;
                    $.ajax({
                        url: "http://<server>/_api//web/lists",
                        dataType: "jsonp",
                        type: "GET",
                        method: "GET",
                        contentType: "application/javascript",
                        headers: {
                            "content-type":
    "application/json;odata=verbose",
                            "accept": "application/json;odata=verbose",
                        success: function onSuccess(data) {
                            alert("Inside Alert");
                        error: function onError(data){
                            alert("Error: "
    + data);
        </script>
    It always hits the error on callback.
    Is there any other way that I can invoke SharePoint Rest Api from a Cross Domain. Please Help.

    Hi Chris,
    Thanks for the reply,Here iam using different files to be uploaded in library.
    please find the below snapshot of json response and ULS logs.
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    abq2i High Could not get DocumentContent row: 0x80004005. 79f7629c-4694-c026-
    3349-2049178ee919
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    aiv4w Medium Spent 0 ms to bind -1 byte file stream 79f7629c-4694-c026-3349-
    2049178ee919 
    12/22/2013 18:31:15.02 w3wp.exe (0x3338) 0x401C SharePoint Foundation Files 
    aise3 Medium Failure when fetching document. 0x80070012 79f7629c-4694-c026-
    3349-2049178ee919
    12/22/2013 18:31:15.39 w3wp.exe (0x3338) 0x0D4C SharePoint Foundation 
    Database ab1a9 High Failed to get document content data.
    System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at
    Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object
    ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) 
    79f7629c-76ab-c026-3349-2c9132b13e9a
    12/22/2013 18:31:15.39 w3wp.exe (0x3338) 0x4184 SharePoint Foundation 
    Database ab1a9 High Failed to get document content data.
    System.ComponentModel.Win32Exception (0x80004005): Cannot complete this function     at
    Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object
    ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) 
    79f7629c-76ab-c026-3349-281167b6cd09
    Thanks again,
    Naresh.

  • How to use custom HTML page in flex web application with out using iframe

    Hi all,
              I have to import a custom HTML page (that has got links to another html pages) inside my flex web application and i dont want to use IFrame. Can you please suggest me with best example.
    Please help me out as i'm new to flex.
    Thanks,
    Swetha.

    Hi, there:
    Best thing to do is to start with the default login.html page, and then modify it. The login screen is fairly complex and it's easy to just miss a JS function you need to call. To get to default page, you would need to do one deploy (to simulator or whatever), and then look for login.html page in the temporary Xcode or Android project generated from the deployment. It should be under the "deploy" directory in your JDev workspace.
    You can also see all the framework JS files and CSS files that way as well.
    We have had customers implementing custom login screen so we know it can work, but they all had to start with the default login screen and then modify it.
    Thanks,
    Joe Huang

  • How do I customize my html page in Dreamweaver CS5 to an Avery template that I wish to print out?

    How do I customize my html page in Dreamweaver CS5 to an Avery template that I wish to print out?

    Dreamweaver and websites do not easily match up to Avery templates.  If you are trying to develop a program for customers/etc to print labels, you should look for a script to generate a PDF file to ensure the accuracy of the printing.
    If you are trying to use Dreamweaver as a substitute to print your own labels, I would highly recommend using Microsoft Word, or Adobe InDesign for a better solution.

  • WRTU54G-TM Slow Setup Page and HTML Error on Access Restrictions Page

    I have a WRTU54G-TM Wireless Router.  It has v1.00.21 firmware and I have done a reset with no solution.  Everything seems to work, except the setup pages load very, very, very slow.  Also in Internet explorer I get an HTML error on the access restrictions page. Resets don't help.  The router did not have this issue until about a month ago that I recall.  I can see on the access restrictions page the gray shading is all lined up except at the bottom on the page, like ther is some sort of issue in the html within the router.
    One more problem, after I reset the router the saved config file I made would not change the default settings back, I had an older saved config file also, it would not work either.
    Is this an issue with this firmware version?   Any one else see this?
    Message Edited by johnsonle9 on 01-24-2010 01:24 PM
    Message Edited by johnsonle9 on 01-24-2010 01:24 PM

    Are you getting the same problem with another computer...?
    Try using different computer and check if you are getting the same problem or not...If yes then,I would suggest you to re-flash/upgrade the router's firmware,reset the router and re-configure it from scratch..Do not use the save config file.

  • Trouble with OUT parameter when creating a PL/SQL process on a HTML page

    I would like to call a stored procedure when creating process on a HTML page.
    I do know how to call the proc with the IN parameters,
    its the OUT parameter that I am having a problem with.
    ..basically getting "wrong number of arguments"
    ..the procedure parameters
    DELETECONFIG(p_configname IN,
    p_configtype IN,
    p_successmsg OUT)
    I have two items on the page for the
    configtype and configname..so my call when creating the process looks like this
    DELETECONFIG(P_CONFIGNAME => :CONFIGNAME_LIST,
    P_CONFIGTYPE => :CONFIGTYPE_LIST,
    not sure how to handle p_successmsg..
    thank you.

    thank you.
    This worked for me, where :P122_XDISPLAY is a display only text area withou a label.
    BEGIN
    DELETECONFIG(:P122_XCONFIGUSERID,
    :P122_XCONFIG_TYPE,
    :P122_XCONFIG_NAME,
    :P122_XDISPLAY);
    END;

  • Cant link access database to html page

    <html>
    <head>
    <title>ASCAM Winery Customers Database Application</title>
    <Img height="350" width="175" style="float:left;" SRC="https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/1538743_739414219404453_295536607_n.jpg?oh=44ac8ad664ec4c955320953ecc897abf&oe=546C928C&__gda__=1416231439_9f7ec10eb3a492796ca997745cd36163">
    <Img height="350" width="175" style="float:right;" SRC="https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-xpf1/v/t1.0-9/10418140_272292502973344_2392827848855223574_n.jpg?oh=31ea8cfd238262ea38791e54fd894927&oe=5461E223&__gda__=1416653129_a039fc9ac8f3adcb4f4d220274565fad">
    <SCRIPT Language="VBSCRIPT">
    dim strCon
    dim conn
    dim rs
    sub    Edit_OnClick()
    rs.fields("ID") = SCAM.Name1.value
    rs.Update
    end sub
    sub del_OnClick()
    if not rs.eof and not rs.bof then
    rs.Delete
    rs.MoveNext
    if not rs.eof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
           SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    else
    rs.MoveFirst
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub dbConn()
    strCon="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Winery.mdb;
    Persist Security Info=False"
    Set Conn=CreateObject("ADODB.Connection")
    Set rs=CreateObject("ADODB.recordset")
    Conn.Open strCon
    rs.ActiveConnection = conn
    'rs.CursorLocation = adUseClient
    'rs.CursorType = adOpenKeyset
    rs.LockType = 2
    rs.Source = "customer"
    rs.Open
    rs.MoveFirst
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end sub
    sub MoveNext_Onclick()
    if not rs.eof then
    rs.MoveNext
    if not rs.eof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub MovePrev_Onclick()
    if not rs.bof then
    rs.MovePrevious
    if not rs.bof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub AddNew_Onclick()
    rs.AddNew
    rs.fields("CustomerID")=SCAM.Name1.value
    rs.fields("CustomerFirstName")=SCAM.CustomerFirstName.value
    rs.fields("CustomerLastName")=SCAM.CustomerLastName.value
    rs.fields("BillingAddress")=SCAM.BillingAddress.value
    rs.fields("EmailAddress")=SCAM.EmailAddress.value
    rs.fields("City")=SCAM.City.value
    rs.fields("State")=SCAM.State.value
    rs.Update
    end sub
    sub Search()
    SCAM.CustomerFirstName.value=""
    SCAM.CustomerLastName.value=""
    SCAM.BillingAddress.value=""
    SCAM.EmailAddress.value=""
    SCAM.City.value=""
    SCAM.State.value=""
    rs.MoveFirst()
    do while not rs.eof
    if rs.fields("CustomerID") = int(SCAM.Name1.value) then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    rs.MoveNext()
    loop
    end sub
    </script>
    <BODY onLoad="dbConn()">
    <FORM NAME="SCAM" Method="Post">
    <Center><h3>ASCAM Winery Customers Database Connection</h3>
    <TABLE border="0" cellpadding="2" cellspacing="2">
    <tr>
    <td>
    Customer ID
    </td>
    <td>
    <INPUT TYPE="TEXT" NAME="Name1">
    </td>
    </tr>
    <TR>
        <TD>
       First Name
        </TD>
        <TD>
       <INPUT type="text" name="CustomerFirstName">
        </TD>
    </TR>
    <TR>
        <TD>
       Last Name
        </TD>
        <TD>
       <INPUT type="text" name="CustomerLastName">
        </TD>
    </TR>
    <TR>
        <TD>
       Email
        </TD>
        <TD>
       <INPUT type="text" name="EmailAddress">
        </TD>
    </TR>
    <TR>
        <TD>
       Phone
        </TD>
        <TD>
       <INPUT type="text" name="Phone">
        </TD>
    </TR>
    <TR>
        <TD>
       Fax
        </TD>
        <TD>
       <INPUT type="text" name="FaxNumber">
        </TD>
    </TR>
    <TR>
        <TD>
        Address
        </TD>
        <TD>
       <INPUT type="text" name="BillingAddress">
        </TD>
    </TR>
    <TR>
        <TD>
       City
        </TD>
        <TD>
       <INPUT type="text" name="City">
        </TD>
    </TR>
    <TR>
        <TD>
       State
        </TD>
        <TD>
       <INPUT type="text" name="State">
        </TD>
    </TR>
    <TR>
        <TD>
       Zip Code
        </TD>
        <TD>
       <INPUT type="text" name="ZipCode">
        </TD>
    </TR>
       </TD>
    </TR>
    <tr>
    <table>
    <td>
    <INPUT TYPE=BUTTON name="AddNew" value="Add">
    <INPUT TYPE=BUTTON name="MoveNext" value="Move Next">
    <INPUT TYPE=BUTTON name="MovePrev" value="Move Previous">
    <input type="button" value="Search" onClick="Search()">
    <input type="reset" value="Reset" onClick = "location.reload();">
    <INPUT TYPE=BUTTON name="del" value="Delete"><br>
    </tr></td></table>
    </form>
    <SCRIPT LANGUAGE="JavaScript">
    var mydate=new Date()
    var year=mydate.getYear()
    if (year < 1000)
    year+=1900
    var day=mydate.getDay()
    var month=mydate.getMonth()
    var daym=mydate.getDate()
    if (daym<10)
    daym="0"+daym
    var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
    var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
    document.write("<large><font color='000000' face='Chiller'><b>"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+"</b></font></small>")
    </SCRIPT>
    </head>
    </body></html>
    What am i doing wrong?

    Here is a restructure and removal of some crap.
    Local HTML pages are not allowed to access files.  Use an HTA extension to allow the HTML to access your files.
    Here is  fixer.  Spnd some time learning HTNL and DHTML.  Go to W3Schools.com
    <html>
    <head>
    <title>ASCAM Winery Customers Database Application</title>
    <script Language="VBSCRIPT">
    dim strCon
    dim conn
    dim rs
    Sub window_onload()
    dbConn
    End Sub
    sub Edit_OnClick()
    rs.fields("ID") = SCAM.Name1.value
    rs.Update
    end Sub
    sub del_OnClick()
    if not rs.eof and not rs.bof then
    rs.Delete
    rs.MoveNext
    if not rs.eof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    else
    rs.MoveFirst
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end If
    end Sub
    sub dbConn()
    strCon="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Winery.mdb; Persist Security Info=False"
    Set Conn=CreateObject("ADODB.Connection")
    Set rs=CreateObject("ADODB.recordset")
    Conn.Open strCon
    rs.ActiveConnection = conn
    rs.LockType = 2
    rs.Source = "customer"
    rs.Open
    rs.MoveFirst
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end Sub
    sub MoveNext_Onclick()
    if not rs.eof then
    rs.MoveNext
    if not rs.eof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub MovePrev_Onclick()
    if not rs.bof then
    rs.MovePrevious
    if not rs.bof then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    end if
    end sub
    sub AddNew_Onclick()
    rs.AddNew
    rs.fields("CustomerID")=SCAM.Name1.value
    rs.fields("CustomerFirstName")=SCAM.CustomerFirstName.value
    rs.fields("CustomerLastName")=SCAM.CustomerLastName.value
    rs.fields("BillingAddress")=SCAM.BillingAddress.value
    rs.fields("EmailAddress")=SCAM.EmailAddress.value
    rs.fields("City")=SCAM.City.value
    rs.fields("State")=SCAM.State.value
    rs.Update
    end Sub
    sub Search()
    SCAM.CustomerFirstName.value=""
    SCAM.CustomerLastName.value=""
    SCAM.BillingAddress.value=""
    SCAM.EmailAddress.value=""
    SCAM.City.value=""
    SCAM.State.value=""
    rs.MoveFirst()
    do while not rs.eof
    if rs.fields("CustomerID") = int(SCAM.Name1.value) then
    SCAM.Name1.value=rs.fields("CustomerID")
    SCAM.CustomerFirstName.value=rs.fields("CustomerFirstName")
    SCAM.CustomerLastName.value=rs.fields("CustomerLastName")
    SCAM.BillingAddress.value=rs.fields("BillingAddress")
    SCAM.EmailAddress.value=rs.fields("EmailAddress")
    SCAM.City.value=rs.fields("City")
    SCAM.State.value=rs.fields("State")
    end if
    rs.MoveNext()
    loop
    end Sub
    </script>
    </head>
    <body>
    <center><h3>ASCAM Winery Customers Database Connection</h3></center>
    <form NAME="SCAM" Method="Post">
    <Img height="350" width="175" style="float:left;" SRC="https://fbcdn-sphotos-e-a.akamaihd.net/hphotos-ak-xap1/v/t1.0-9/1538743_739414219404453_295536607_n.jpg?oh=44ac8ad664ec4c955320953ecc897abf&oe=546C928C&__gda__=1416231439_9f7ec10eb3a492796ca997745cd36163">
    <Img height="350" width="175" style="float:right;" SRC="https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-xpf1/v/t1.0-9/10418140_272292502973344_2392827848855223574_n.jpg?oh=31ea8cfd238262ea38791e54fd894927&oe=5461E223&__gda__=1416653129_a039fc9ac8f3adcb4f4d220274565fad">
    <table border="0" cellpadding="2" cellspacing="2">
    <tr><td>Customer ID</td><td><input TYPE="TEXT" NAME="Name1"></td></tr>
    <tr><td>First Name</td><td><input type="text" name="CustomerFirstName"></td></tr>
    <tr><td>Last Name</td><td><input type="text" name="CustomerLastName"></td></tr>
    <tr><td>Email</td><td><input type="text" name="EmailAddress"></td></tr>
    <tr><td>Phone</td><td><input type="text" name="Phone"></td></tr>
    <tr><td>Fax</td><td><input type="text" name="FaxNumber"></td></tr>
    <tr><td>Address</td><td><input type="text" name="BillingAddress"></td></tr>
    <tr><td>City</td><td><input type="text" name="City"></td></tr>
    <tr><td>State</td><td><input type="text" name="State"></td></tr>
    <tr><td>Zip Code</td> <td><input type="text" name="ZipCode"></td></tr>
    </td>
    </tr>
    <tr>
    <table>
    <tr>
    <td>
    <input TYPE="button" name="AddNew" value="Add">
    <input TYPE="button" name="MoveNext" value="Move Next">
    <input TYPE="button" name="MovePrev" value="Move Previous">
    <input type="button" value="Search" onClick="Search">
    <input type="reset" value="Reset" onClick="">
    <input TYPE="button" name="del" value="Delete"><br>
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    ¯\_(ツ)_/¯

  • Load HTML pages to iPhone for Safari access.

    I have confidential contact information in the form of HTML pages I would like to down load to my iPhone and access with Safari. Is this possible?

    I'm not sure what your question is. You have 3000 static
    pages. Why would
    templates make any difference at all?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Paul206" <[email protected]> wrote in
    message
    news:e679cl$8tm$[email protected]..
    > This is one of *those* questions -- I've seen it done,
    but my resource is
    > no
    > longer available to tell me how.
    >
    > I have a site built with a single DWT template page,
    uniquely named
    > editable
    > regions. Now that the page count has passed 3,000 HTML
    pages, the
    > decision was
    > made to move the content into a PHP database (for
    improved searchability
    > and
    > management ease, mostly).
    >
    > The quandry is HOW to go about grabbing those files and
    dumping them into
    > a
    > format I can manipulate to load into the half-baked
    Yahoo! MySQL database.
    > (Y'know, the one without an "Import" option, hence
    having to write SQL to
    > load
    > these in groups.)
    >
    > I'm not too fussy about format -- CSV, Excel, something
    that can be
    > manipulated without the copy-and-paste the junior web
    monkey brat insists
    > is
    > the ONLY way. And I enjoy showing the punk up every so
    often, but am not
    > finding the answer in da book or in my Googlin'
    wanderings. (I did see
    > the
    > option to export the site into XML, which beats nothin',
    but was hoping
    > for
    > something without too many middle steps to get into an
    Excel-like file
    > format).
    >
    > Thanks in advnace!
    >

  • "Page Path" in HTML Page Skin

    Hey Guys,
    I was wondering if anyone knows how I could include the behavior that the "Page Path" Item provides, but I would like to do it in an HTML Pageskin. Seems like this would be fairly common for those people using page skins.
    Thanks
    -sean

    Hi,
    I insist : it is not possible with HTML to insert Page breaks. BUT, Tammie is right! You can use CSS (Cascade Style Sheet) to insert page breaks thanks to few lines of code in your HTML page.
    Follow this link to have a look at a very simple piece of code to illustrate this :
    http://www.codeave.com/css/code.asp?u_log=4016
    Here it the code if you don't have access to this URL :
    <html>
    <head>
    <title>CodeAve.com/CSS - Page Break</title>
    <body bgcolor="#FFFFFF">
    <center>
    Page 1
    <br style="page-break-before:always;">
    Page 2
    <br style="page-break-after:always;">
    Page 3
    <p>
    Use print preview on your browser to see how<br>
    this page would print out to three pages
    </center>
    </body>
    </html>
    Hope it helps.
    Don't forget to close the post if solved (so that search in the forum is easier), and reward points (so that SDN members are happy !) 

  • Error 403 Reported when trying to access web page through a program.

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine but gives a error 403 when tried to access URL's outside the system. Tried to read about 403, seems that many sites does not allow to access a particular URL directly using the directory structure, you have to pass thru different hyperlinks before reaching resource.
    IS THERE ANY WAY THIS PROBLEM CAN BE SOLVED.
    import java.io.*;
    import java.net.*;
    class TestDownload
         public static void main(String[] args)
              try
                   URL url = new URL("http://www.webmasterworld.com/forum48/1966.htm");
              //     URL url = new URL("http://localhost:8080/index.html");
              //     URL url = new URL("file:\\C:\\web_2.pdf");
                   URLConnection connection = url.openConnection();
                   InputStream stream = connection.getInputStream();
                   BufferedInputStream in = new BufferedInputStream(stream);
                   FileOutputStream file = new FileOutputStream("x.html");
                   BufferedOutputStream out = new BufferedOutputStream(file);
                   int i;
                   while ((i = in.read()) != -1) {
                        out.write(i);
                   out.flush();
              catch(IOException e)
                   e.printStackTrace();
              System.out.println("Hello World!");
    }

    I was writing a program for fun, to try to download a web page, pdf or anything from the web. The program works fine when given local file system path in URL and also works well when i tried to access a page from the tomcat installed on my machine but gives a error 403 when tried to access URL's outside the system. Tried to read about 403, seems that many sites does not allow to access a particular URL directly using the directory structure, you have to pass thru different hyperlinks before reaching resource.
    IS THERE ANY WAY THIS PROBLEM CAN BE SOLVED.
    import java.io.*;
    import java.net.*;
    class TestDownload
         public static void main(String[] args)
              try
                   URL url = new URL("http://www.webmasterworld.com/forum48/1966.htm");
              //     URL url = new URL("http://localhost:8080/index.html");
              //     URL url = new URL("file:\\C:\\web_2.pdf");
                   URLConnection connection = url.openConnection();
                   InputStream stream = connection.getInputStream();
                   BufferedInputStream in = new BufferedInputStream(stream);
                   FileOutputStream file = new FileOutputStream("x.html");
                   BufferedOutputStream out = new BufferedOutputStream(file);
                   int i;
                   while ((i = in.read()) != -1) {
                        out.write(i);
                   out.flush();
              catch(IOException e)
                   e.printStackTrace();
              System.out.println("Hello World!");
    }

Maybe you are looking for

  • Applying transaction log corrupted database?

    Hi experts, Symptoms:   I built a standby system this Monday and I completed a full DB restore without errors. I used log shipping to apply logs but an error occurred: SQL Server detected a logical consistency-based I/O error: incorrect pageid (expec

  • Can I set clip durations in iMovie 10.0.7 for Yosemite?

    In earlier versions of iMovie I was able to go to preferences and display the clip durations as described in this link below. I could also see the approximate position of the entire video while it is playing. iMovie '11: Display the precise duration

  • Problem with iPad nano

    Hi, the earphones for my iPad nano are broken. I tried to get others for free (one year warranty), but on the apple website (apple.at/AUSTRIA) I have to use a creditcard for purchasing if I wouldn´t send the broken parts back- but I haven´t bought my

  • JDBC Adapter error (sender) from MS Access

    Hi. I have an error in a communication channel for an interface with MS Access Data Base. The log info error is: "#00144F46B52C00370000000000006B820034E8A65C6B9661#1232148827508#com.sap.aii.adapter.jdbc.JDBC2XI##com.sap.aii.adapter.jdbc.JDBC2XI.invok

  • DTR Server  is unreachable.

    Hi, I am not able to login in NWDS in the track created in the DTr or DC perpective.I am getting the error as: DTR Server  is unreachable. Please suggest.Its urgent. Regards, Rajani