Forwarding Page

Here is the deal. I've now got a .Mac web account. I've created a page in iWeb to forward people from my old website to the .Mac one. I found some meta code on the net and inserted it in a HTML snippet, but it doesn't forward the entire page. It just displays the new site in that small snippet box. I've tried pasting the code in a text box on the page but that does not work either. How do I get it to correctly forward. You can see the page at http://home.triad.rr.com/ggentry/

If I just us a text editor and paste in the code and FTP it Up the page just shows up as a page of HTML code.
If you are using TextEdit, you must work in Plain Text mode, and NOT in Rich Text mode where you can choose File Format: HTML. Using the latter produces garbage when you start with html already.
If you republish your page from iWeb, you will have to add your custom html again.

Similar Messages

  • Navigation is not working in forwarded page

    HI ,
    I am forwarding one jsp formatted JSF page to other page . index.jsp to home.jsp like <jsp:forward page="jsf/home.jsp"/> .I am having some af:commandImagelink in home.jsp page which is navigating to other pages .When I am accessing the home.jsp page directly the navigation to other page is working fine but when i am going thru index.jsp then it is staying in the same page .
    Please suggest me if anybody have some idea .
    Thanks
    -Dharmendra

    Dharmendra,
    Are you using ADF task flows? If so, you won't be able to forward to the JSP page directly, but you would need to forward to the task flow activity.
    John

  • Simple forward page problem

    Hi all,
    I have simple forward page , only jump to else part can any one please told me why?
    Thank you
        <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Empet Check</title>
    </head>
    <body>
    <%
       String name = request.getParameter("String");
       if (name != null){
       %>
          name is not null
         <jsp:forward page="ViruList1.jsp"/>
        <% }else { %>
    <jsp:forward page="Home.html"/>
    <% } %>
    </body>
    </html>
    <form name="formName" action="forward.jsp" method="post" >
    <input type="text" name="string" size="20">                               
                         <input type="submit" name="submit" value="Go"></td>

    got it

  • Plz Help to forward pages

    Hello Techies,
    I m New to JSP . I need to forward pages according to the if condition. I worked out the code as
    <%@ page language="java" %>
    <%@ page session="true" %>
    <%@ page import="java.io.*" %>
    <%@ page import="java.sql.*" %>
    <html>
    <body>
    <%
    Connection con=null;
    String str1=request.getParameter("user");
    String str2=request.getParameter("password");
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con=DriverManager.getConnection("jdbc:odbc:Login","sa","");
    Statement stmt=con.createStatement();
    ResultSet rs=stmt.executeQuery("select * from Login");
    while(rs.next())
    String str3=rs.getString(1);
    String str4=rs.getString(2);
    if(str1==str3)
    out.println("Connection Succeded");
    %>
    <jsp:forward page="try.jsp" />
    <%
    break;
    %>
    <TABLE border=2>
    <%
    while(rs.next())
    %>
    <TR>
    <TD><%=rs.getString(1) %></TD>
    <TD><%=rs.getString(2) %></TD>
    </TR>
    <%
    %>
    </TABLE>
    <%-- <jsp:forward page="First.jsp"/> --%>
    <%
    catch(Exception d)
    out.println(d.getMessage());
    %>
    </body>
    </html>
    Here i m have created DSN namely Login and i m also having respected datas in database. It work fine showing me the results but it is not forwarding to the First.jsp file. I m having that file in the same folder
    Here i m using Tomcat web container 4.1. Plz give me a suggestion. All suggestions are welcomed.
    Thanks in advance
    Aski
    [email protected]

    <%
    Connection con=null;
    String str1=request.getParameter("user");
    String str2=request.getParameter("password");
    try {
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
        con=DriverManager.getConnection("jdbc:odbc:Login","sa","");
        Statement stmt=con.createStatement();
        ResultSet rs=stmt.executeQuery("select * from Login");
        while(rs.next()) {
            String str3=rs.getString(1);
            String str4=rs.getString(2);
            // need --> if(str1.equals(str3) {
            if(str1==str3) {
                out.println("Connection Succeded");
    %>
            <jsp:forward page="try.jsp" />
    <%
            break;
    %>
    <TABLE border=2>
        <%
        while(rs.next()) {
        %>
        <TR>
            <TD><%=rs.getString(1) %></TD>
            <TD><%=rs.getString(2) %></TD>
        </TR>
        <%
    %>
    </TABLE>
    <%-- <jsp:forward page="First.jsp"/> --%>
    <%
    } catch(Exception d) {
        out.println(d.getMessage());
    %>also i think it may be skipping to exception is it ?
    beacuse you calling
            <TD><%=rs.getString(1) %></TD>
            <TD><%=rs.getString(2) %></TD>after you called rs.getString(1) & (2) earlier, try grabbing a reference to them outside of try instantiate them on first call and reuse that reference for the second time you want
    them
    like
    <%
    Connection con=null;
    String str1=request.getParameter("user");
    String str2=request.getParameter("password");
    String _str3 = null;
    String _str4 = null;
    try {
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
        con=DriverManager.getConnection("jdbc:odbc:Login","sa","");
        Statement stmt=con.createStatement();
        ResultSet rs=stmt.executeQuery("select * from Login");
        while(rs.next()) {
            _str3=rs.getString(1);
            _str4=rs.getString(2);
            // need --> if(str1.equals(str3) {
            if(str1==str3) {
                out.println("Connection Succeded");
    %>
            <jsp:forward page="try.jsp" />
    <%
            break;
    %>
    <TABLE border=2>
        <%
        while(rs.next()) {
        %>
        <TR>
            <TD><%= _str3 %></TD>
            <TD><%= _str4 %></TD>
        </TR>
        <%
    %>
    </TABLE>
    <%-- <jsp:forward page="First.jsp"/> --%>
    <%
    } catch(Exception d) {
        out.println(d.getMessage());
    %>hth
    g00fy

  • Can a .jsp contain more then one jsp:forward page

    Can a .jsp contain more then one jsp:forward page if it's conditional.
    ie. if condition true
    forward to pageA
    else
    forward to pageB?
    Thank you.

    gimbal2,
    Thanks for the response. I did try it and I got a
    compile error. I just realized that the error was
    regarding a different issue.
    JJIn that case, it would have been appropriate to post the actual problem.

  • The "page forward/page back" buttons are disabled, why?

    The forward/back page button in the top,left side of my tool bar is grayed out...I am unable to move forward or back a page.

    This can be a problem with the file places.sqlite that stores the bookmarks and the history.
    * http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Is there a fix for the back page/forward page suddenly being grayed out?

    I looked at the blog pages.. Seems 70 people have reported this problem. They page forward/back worked when i installed the upgrade and now it doesnt. Is there a fix for this that can be easily done?

    First please update you browser from Firefox 3.6.9 to Firefox 3.6.15.
    To update Firefox-
    1. Click Help Menu and select Check for Updates.
    2. Let Firefox check for Updates and download them.
    3. Install the update when prompted by clicking Install Update or Apply Update.
    4. Repeat steps 1-3 till no other updates are found.
    After updating Firefox you should be using Firefox 3.6.15. Check if the issue persists.

  • Where is the page forward/page back drop down arrow? Went missing in 4.0

    Prior to upgrading to 4.0 there was an arrow to the right of the page forward/back icon that opened a drop down of the last 20 or so pages. It is no longer there. I have tried "restore default set" with no luck.

    You can get the drop down list by either right-clicking on the back/forward buttons, or holding down the left button until the list appears.

  • ? how to forward Pages 09 document to PC user so they can open it

    When I forward document created on Pages 09, my colleague who uses a PC can't open it. How can I make this work?

    You can save the document in not just Pages format but also in PDF, RTF, Word or plain text. PC user uses Word most of the time and also PDF.
    Go File > Export > choose a format, or Share Export > choose a format, or File > Save as > Word (here you can also save as iWork'08)
    In the Help menu you can choose Pages User Guide for downlaodng. It contains a lot of information on what Pages can do.

  • Want to carry forward page total.

    Dear all,
    I am using report 6i and want to print total on each page n carry forward previous page total to next page. i.e.
    first page:
    empname sal.
    AA 1000
    BB 3000
    Page Total                           4000
    Second Page:
    empname sal.
    carry forward : 4000
    CC 1000
    DD 3000
    Page Total                              8000
    How to do this?
    Thanks in Advance

    Hello,
    I have uploaded an example here : ftp://ftp.oracle.com/support/outgoing/dsegard/cumul_haut_bas_page.rdf
    The example is based on the table EMP (Script to create the table and populate it are available in ORACLE_HOME\tools\dbtab\demobld.sql)
    Regards

  • Struts: Forward pages always blank

    Hi
    Please could someone advise on using Struts forwards?
    I have an action mapping:
    <action path="/dologin"
        type="nick.LoginAction"
        name="loginForm"
        scope="request"
        input="/pages/Login.jsp">
        <forward name="success" path="/pages/Welcome.jsp"/>
        <forward name="failure" path="/pages/Login.jsp"/>
    </action>With the action form:
    <form-bean name="loginForm" type="nick.LoginForm"/>When I submit my login form it is going to dologin.do. The LoginAction checks the value of the username and password and should do a forward to /pages/Welcome.jsp or /pages/Login.jsp
    I only get a blank page though in all cases. My perform method in the LoginAction is:
    public ActionForward perform(ActionMapping mapping, ActionForm form,
                                         HttpServletRequest request, HttpServletResponse response){
              LoginForm f = (LoginForm) form;
              String username = f.getUsername();
              String password = f.getPassword();
              if(username.equals("test") && password.equals("test123")) {
                        return (mapping.findForward("success"));
                    } else {
                        return (mapping.findForward("failure"));
         }No log output is generated.
    Can anyone advise me?
    Thanks

    Apologies - found the problem. The example I was using listed the Action method to use as perform when it is actually execute in the Action class.
    Stupid error.

  • Page forward, page back and recent pages buttons sometimes disabled

    ''Duplicate post, continue here - [https://support.mozilla.com/en-US/questions/794256]''
    open a category on e-bay, click on an item then attempt to use page back to go back to the category page but the button is blank instead of green

    In Safari select View->Customize Address Bar. You can now drag the forward/back arrows back to the address bar.
    How did they get removed in the first place? Easy! If you control-click (right-click) on any of the address bar objects you will see a Remove option. It's rather easy to accidentally zap these controls. I've done it myself a couple of times.

  • Using Bean to forward page.

    Hey I just was wondering if there is a way to directly forward a page from the bean using "Facescontext" or something from the bean to another page? I need this for session timing out. So I have code that runs a function as soon as the session expires but i want the page to move to the login page.. any suggestions?

    For that purpose, you need to use Filter,
    public class LogoutFilter implements Filter
        //the login page uri
        private static final String SIGNOUT_PAGE_URI = "logOut.jsf";
        public void init( FilterConfig filterConfig ) throws ServletException
        public void doFilter( ServletRequest req, ServletResponse res, FilterChain chain ) throws IOException, ServletException
            HttpServletRequest request = (HttpServletRequest )req;
            String url = request.getServletPath();
            String query = request.getQueryString();
            if( !authorize(request) && !isRedirected(request))
                request.getRequestDispatcher( SIGNOUT_PAGE_URI ).forward( req, res );
            else
                chain.doFilter( req, res );
        public void destroy()
        private boolean authorize( HttpServletRequest req )
            Object obj = req.getSession().getAttribute( UserBean.KEY_CURRENT_USER );
            return obj != null;
        private boolean isRedirected( HttpServletRequest req )
             boolean isRedirected = false;
            Object obj = req.getParameter(AppConstants.SecurityConstants.IS_REDIRECTED);
            boolean isObjectNull = (obj == null);
            if(!isObjectNull){
                 String objectValue = (String)obj;
                 isRedirected = objectValue.equals(Boolean.TRUE.toString());
            return  (isRedirected);
    Register this filter in web.xml:
    <filter>
      <filter-name>logoutFilter</filter-name>
      <filter-class>someOrg.filter.LogoutFilter</filter-class>
    </filter>
    <filter-mapping>
      <filter-name>logoutFilter</filter-name>
      <url-pattern>/faces/*</url-pattern>
    </filter-mapping>

  • DPC3825 Port Range Forwarding page disappeared

    I've been using the DPC3825 gateway to forward port to my server. It's not long ago that I realised the page for port forwarding had disappeared. I'm confused and now I can't configure the port forwarding any more. Please can anyone tell me what caused this and how to get it back? Many thanks in advance. 

    to re-iterate again ..
    recent changes made to 'Single Port Forwarding' work .. but changes (as well as existing) on 'Port Range Forwarding' just dont forward.
    to re-iterate again ..
    stuff (whether existing or newly added) works for 'Single Port Forwarding' .. but stuff (whether existing or newly added) does NOT work for 'Port Range Forwarding'.
    This any more clear?
    Thx

  • Help required in jsp forward page

    here i made four page in the first page i get the username and password and move it into second page in the second page it evaluates if username equals dineshkumar and password equals dinesh it shows third page else it shows fourth page here the problem is when username is dineshkumar and password is dinesh it goes to success page if wrong password entered it remains in the login page itself
    index.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%--
    The taglib directive below imports the JSTL library. If you uncomment it,
    you must also add the JSTL library to the project. The Add Library... action
    on Libraries node in Projects view can be used to add the JSTL 1.1 library.
    --%>
    <%--
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    --%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body><form action="second.jsp" method="POST">
    enter the username <input type="text" name="t1" value="" size="20" />
    enter the password <input type="text" name="t2" value="" size="20" />
    <input type="submit" value="submit" />
    <input type="reset" value="cancel" />
    </form>
    </body>
    </html>
    secondpage.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%--
    The taglib directive below imports the JSTL library. If you uncomment it,
    you must also add the JSTL library to the project. The Add Library... action
    on Libraries node in Projects view can be used to add the JSTL 1.1 library.
    --%>
    <%--
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    --%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body><form action="second.jsp" method="POST">
    enter the username <input type="text" name="t1" value="" size="20" />
    enter the password <input type="text" name="t2" value="" size="20" />
    <input type="submit" value="submit" />
    <input type="reset" value="cancel" />
    </form>
    </body>
    </html>
    thirdpage.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%--
    The taglib directive below imports the JSTL library. If you uncomment it,
    you must also add the JSTL library to the project. The Add Library... action
    on Libraries node in Projects view can be used to add the JSTL 1.1 library.
    --%>
    <%--
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    --%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body><form action="second.jsp" method="POST">
    enter the username <input type="text" name="t1" value="" size="20" />
    enter the password <input type="text" name="t2" value="" size="20" />
    <input type="submit" value="submit" />
    <input type="reset" value="cancel" />
    </form>
    </body>
    </html>
    fourth page
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <h1>JSP Page</h1>
    this is an error page
    </body>
    </html>

    i am sorry i retifed it i am extremly sorry guys

Maybe you are looking for

  • What's the best way to partition my disk with Vista, Arch, and data?

    Hey everybody, I'm in a bit of a quandary here and I'd love a bit of help. I have a 320 GB hdd on my new laptop. I want to dual boot Windows Vista and Arch, with a shared partition for data in between. I have Windows Vista installed with 110 GB of un

  • Using new Adove Media Encoder with Premiere pro cs4

    I have Premiere Pro Cs4 and Design&Web premium CS6 -  which comes with Adobe Media Encoder cs6. Can I get Premiere Pro CS4 to use the new encoder (and hopefully speed up)?

  • Help required on MSCA and WMS - Mobile Application

    Hi all I need to make some changes in MSCA - mobile application. As I am new to mobile applications.. I would like to know how can we get the page details of the menu or the page to get the exact filename which is being referred. This is so that I ca

  • In-house production of asset through process order

    Dear Experts, We are procuring  raw material and doing in house production for this raw material. The process i followed is : we created a new order type and assigned settelement profile for asset under contruction while creating prod order it is ask

  • ACS 5.2 Helpdesk account permission

    Is there a way to restrict the helpdesk account only able to add/remove MAC address from the host filter table?  It would be better if doing this via web or API. Thanks,