Page is not rendering as per requirement request

Hi All,
Basically Here is the scenario.
Based on selectoin of particular service item from combo box(dropdown list), We are creating the JSF controls dynamically on new page for further process.
We are maintaining the controls information in database that need to be created dynamically and rendered for each service.
And I am able to create the controls dynamically and able to place them on page perfectly.
Until here everything looks ok for me.
But main problem I have identified is when I go for new request, I am getting the same old page when I select the other service.
Initially I though this could be a problem of caching and I have placed meta info in order to expire the page. But that was no use.
So I logged all the data that is coming from database and logged the information where I have created the controls dynamically..
What I have identified is I am getting the right data on paricular service selection and even I am able to see that methods execution is correct. I was stunned and not able to understand why the JSF is not able to show the controls.
So I searched the JavaDoc for solution. I though I could use FacesContext.release() method. But that does not help me. Even I tried to clear the parent objects using gridpanel1.getChildren().clear(). Even that does not supported me :(
In order to understand my problem, here I am pating the code.
Please help me why the hell my page is not rendering
Below is code in constructor
javax.faces.context.ExternalContext ec = context.getExternalContext();
            javax.servlet.http.HttpServletRequest request=(javax.servlet.http.HttpServletRequest)ec.getRequest();
            String service=request.getParameter("form1:cmbServices");
            int serviceid=-1;
            if(service!=null) {
                serviceid=Integer.parseInt(service);
            gridPanel1.getChildren().clear();
            controls =getControls(serviceid);
            HtmlControl[] controlArray =controls.getHtmlControls();
            //log(controlArray.length+" Length");
            for (int i =0;i<controlArray.length;i++) {
                HtmlControl control =controlArray;
//log(control+" Control");
//log(controlArray.length+" Length");
if (control.isRadio()) {
addRadio(control);
//log("Entered here in adding radio");
else if (control.isCheckBox()) {
addCheckBox(control);
//log("Entered here in adding checkbox");
else if (control.isTextBox()) {
addTextBox(control);
//log("Entered here in adding textbox");
here is the code for dynamic creation of controls
private void addRadio(HtmlControl control) {
        HtmlPanelGrid gridPanel = new HtmlPanelGrid();
        UIComponent parent = gridPanel1;
        HtmlOutputText outputText = new HtmlOutputText();
        outputText.setValue(control.getDescription());
        String desc =control.getDescription();
        desc=desc.replaceAll(" ", "_");
        outputText.setId(desc);
        outputText.setStyleClass("bodyText");
        HtmlSelectOneRadio radio = new HtmlSelectOneRadio();
        radio.setBorder(0);
        radio.setLayout("pageDirection");
        //radio.setId("Radio_"+control.getId());
        radio.setId(control.getName()+"__"+control.getId());
        UISelectItems items = new UISelectItems();
        Radio objRadio =(Radio)control;
        //  vectDefaultSelectItemsArray
        DefaultSelectItemsArray objArray =new DefaultSelectItemsArray();
        vectDefaultSelectItemsArray.add(objArray);
        //log("vectDefaultSelectItemsArray :"+vectDefaultSelectItemsArray.size());
        arrays=(DefaultSelectItemsArray[])vectDefaultSelectItemsArray.toArray(new DefaultSelectItemsArray[vectDefaultSelectItemsArray.size()]);
        int size =arrays.length;
        arrays[size - 1].clear();
        for (int i =0;i<objRadio.getValues().size();i++) {
            arrays[size - 1].add(new SelectItem(objRadio.getValues().get(i)+"",""+objRadio.getTexts().get(i)));
        // array.setItems(new String[] {"Yes","No" });
        items.setValueBinding("value",getValueBinding("#{consumer$jobInfo.arrays["+(size-1)+"]}"));
        radio.setStyleClass("bodyText");
        radio.getChildren().add(items);
        gridPanel.getChildren().add(outputText);
        gridPanel.getChildren().add(radio);
        parent.getChildren().add(gridPanel);
    private void addCheckBox(HtmlControl control) {
        HtmlPanelGrid gridPanel = new HtmlPanelGrid();
        UIComponent parent = gridPanel1;
        HtmlOutputText outputText = new HtmlOutputText();
        outputText.setValue(control.getDescription());
        outputText.setStyleClass("bodyText");
        String desc =control.getDescription();
        desc=desc.replaceAll(" ", "_");
        outputText.setId(desc);
        HtmlSelectManyCheckbox checkBox = new HtmlSelectManyCheckbox();
        checkBox.setBorder(0);
        checkBox.setLayout("pageDirection");
        //checkBox.setId("CheckBox_"+control.getId());
        checkBox.setId(control.getName()+"__"+control.getId());
        UISelectItems items = new UISelectItems();
        CheckBox objcheckBox =(CheckBox)control;
        //  arrays[0]=new DefaultSelectItemsArray();
        //arrays[0].clear();
        DefaultSelectItemsArray objArray =new DefaultSelectItemsArray();
        vectDefaultSelectItemsArray.add(objArray);
        //log("vectDefaultSelectItemsArray :"+vectDefaultSelectItemsArray.size());
        arrays=(DefaultSelectItemsArray[])vectDefaultSelectItemsArray.toArray(new DefaultSelectItemsArray[vectDefaultSelectItemsArray.size()]);
        int size =arrays.length;
        arrays[size - 1].clear();
        //  array.clear();
        for (int i =0;i<objcheckBox.getValues().size();i++) {
            arrays[size - 1].add(new SelectItem(objcheckBox.getValues().get(i)+"",""+objcheckBox.getTexts().get(i)));
            //     array.add(new SelectItem(objcheckBox.getValues().get(i)+"",""+objcheckBox.getTexts().get(i)));
        // array.setItems(new String[] {"Yes","No" });
        items.setValueBinding("value",getValueBinding("#{consumer$jobInfo.arrays["+(size-1)+"]}"));
        checkBox.setStyleClass("bodyText");
        checkBox.getChildren().add(items);
        gridPanel.getChildren().add(outputText);
        gridPanel.getChildren().add(checkBox);
        parent.getChildren().add(gridPanel);
    private void addTextBox(HtmlControl control) {
        HtmlPanelGrid gridPanel = new HtmlPanelGrid();
        UIComponent parent = gridPanel1;
        HtmlOutputText outputText = new HtmlOutputText();
        outputText.setValue(control.getDescription());
        String desc =control.getDescription();
        desc=desc.replaceAll(" ", "_");
        outputText.setId(desc);
        outputText.setStyleClass("bodyText");
        HtmlInputText textField = new HtmlInputText();
        //  textField.setId("textField_"+control.getId());
        textField.setId(control.getName()+"__"+control.getId());
        HtmlOutputText outputText1 = new HtmlOutputText();
        outputText1.setValue(" ");
        outputText1.setStyleClass("bodyText");
        textField.setStyleClass("frmObjects");
        gridPanel.setColumns(3);
        gridPanel.getChildren().add(outputText);
        gridPanel.getChildren().add(outputText1);
        gridPanel.getChildren().add(textField);
        parent.getChildren().add(gridPanel);
here is my after render response method
protected void afterRenderResponse() {
        //job_selection_templateRowSet.close();
        jiya_html_controlRowSet.close();
        FacesContext.getCurrentInstance().release();
here is my getValueBinding method
private ValueBinding getValueBinding(String expression) {
        return     FacesContext.getCurrentInstance().getApplication().createValueBinding(expression);
    }Thanks
Sudhakar.

Hi,
You can try the following to debug and provide us more details.
1. I am assuming you are trying to navigate by using a commandLink/Command Button ? If so, is the action handler for the command getting called ?
2. Do you have input components in the page with Validators/converters attached to them ? If so, you may not watch for validation/conversion errors. If there are errors, the same page will be redisplayed. In that case you would need to associate message component to get more details on what went wrong.
3. Have you set up the necessary navigation rules to navigate to the right page ?
4. When you are adding components programatically, its better to assign explicit id's to your components, to avoid any unexpected behavior.
Hope this helps.
Regards
-Jayashri

Similar Messages

  • Page is not rendered after first request

    Hi all,
    i have two page with names page1.jsp and page2.jsp. i open page2.jsp as pop up window by clicking a link on page1.jsp
    in _init() of page2.jsp,  i am getting some information from database and then i am able to create dynamic components according to information provided by database.
    for example, i create 3 textFields (their Id's are myTextField1, myTextField2, myTextField3) as result of execution of sql querry.
    Until here everything is ok for me, components looks rendered.
    i closed the page2 and then reopen it as pop up window again. i tryint to create another three textFields (their Id's are myTextField4, myTextField5, myTextField6). it looks like created at runtime, however i am getting the same old page.
    Please help me why my page is not rendering after reopening.
    Regards,

    any idea?
    it's similar problem without solution at following link
    http://swforum.sun.com/jive/thread.jspa?threadID=54347&messageID=208120#208120
    Any help apprechiated

  • JSF Pages are not rendering correctly when  loaded using Non JSF actions

    Hi All,
    This problem is irritating me and I am posting the same query for the third time here.
    When I come from non jsf actions such as page submitting using Javascript, clicking anchor link, clicking normal Html submit button and so on my page is not rendering correctlly .
    In other words, My first GET method/Post method works perfectly for the first time when the page is loaded.
    But when we try to access the page for the second time, although logical work is perfect in bean, I am getting same old page.
    How to resolve this issue?
    or
    Is this Bug of Sun's Implementation of JSF Framework.
    Thanks,
    Sudhakar

    Hi Sudhakar,
    There is a discussion about refreshing a page, Take a look at the below thread
    http://swforum.sun.com/jive/thread.jspa?threadID=55660
    Hope this what you are looking for
    MJ

  • CQ page is not rendering properly. It is not rendering HTML. It is showing HTML source code as is.

    On some of the pages, I am getting this weird behavior wherein page is not rendering properly. It is showing HTML source code as is. Could you please help me out? What could be the issue? And how can we get rid of the same?

    Check your component jsp page. it is possible that it is just plan file without directives <@ or you might have miss to close tag which is creating source as text to render
    Paste your jsp code in case you need further help
    Thanks,
    Ajit

  • JSF Page is not  rendering correctly on NON JSF Action

    Hi All,
    When I go from JSF actions (clicking HtmlCommandButton HtmlActionLink), I am getting the correct page. But when I come from non jsf actions say if I come through by clicking normal anchor tag or javascript action or normal html submit button, I am getting same old rendered page. How can I overcome this problem??
    Thanks
    Sudhakar

    I am getting same old rendered pageIn otherwords, page is not getting refreshed and contains old data

  • HighChart in sapui5 page is not rendering

    I'm trying to use hightchart's pie-chart in my page. But, the pie-chart is not rendering.
    This is what I'm trying to do JSBin.

    how about this?
    tweak your jsbin
    -D

  • Web Page(s) not rendering after 10.3.1 update

    Since the 10.3.1 update on my Z10, there are several "responsive" web page(s) I visit that no longer render properly on my Z10. I have tried about 6 different browsers on my desktops and laptops, and all still render target pages properly. Before 10.3.1, target page(s) rendered properly on same Z10. I have cleared history on Z10. Target web page(s) use SVG graphics that seem to either not load or not render. Those target page(s) use CSS and HTML5, and have not changed since long before 10.3.1.  I can provide example URLs.
    Anyone else facing same problems?
    Thanks, all

    @saifrahman, you may want to follow twitter feed, as iOS and WP users have been reporting continued problems in the past few hours (https://twitter.com/search?q=outlook%20contacts&src=typd)
    Paul
    Torch 9810; PlayBook 64g; iPad1 64g; iPad2 64g; iPhone6 64g Passport
    Provider Bell (tablets all WiFi)

  • Page Footer not rendering in iPad

    Dear Experts,
    I have crated a simple SAPUI5 application with a xml view having a footer in the page.
    The footer is showing and working fine in desktop browsers, but it is not showing when I test the page using iPad.
    Request you to please suggest.
    Warm Regards,
    Upendra

    Hi Jaun,
    Thanks your response.
    Yes- I have seen the support for iPAD and iOS are more enhanced it in 11.1.1.6 and later versions.
    But we already hosted our apps in Production which is currently 11.1.1.5. We have complex workflows designed in SOA suite too.
    Now, if we need to upgrade to 11.1.1.6, we need to basically do validate/test all our applications on new release and it cost us. CLient may not approve for upgrade as of now.
    Is there any guidance or way for customers like us who are on 11.1.1.5 version, to get the ADF features and support for iPAD or iOS? Kind of backward compatible patches kind of thing?
    Do we need to log a SR on ORACLE?
    Please suggest!!

  • WSR not coming as per requirement

    Hi gurus,
    i wish to create WSR as
    0112233 say Weekly off 1st shift 2 nd shift and 3 rd shift in the pattern
    0112233
    when i am defninig the schedules it is creating but
    if i am assign to an employee
    then it will start the day with 2nd shift instead of Weekly off
    i dont know where i have to define that whenever employee
    selected for the shift from the 1st of every month
    should be weekly off and it should not considered the weekdays
    i.e
    if i mention this WSR for an employee in Info type 007
    it should take the first day as Weekly off and not to consider the Monday,tuesday etc...
    my current problem is
    i have assigned the WSR in infotype 7 as 0112233 w.e.f. 01.04.2010
    it is taking from Shift 2 and making the monday as WO instead of Thursday
    which is to be weekly off as per the requirement
    with regards
    partha

    Hi Partha,
    I dont know if this will work but you can try it.. its a bit repititive.
    Now you have a Period Work Schedule rule 0112233 for which you generate Work schedule for a year lets say using 01.04.2010 as the reference day for PWS.
    Now, for the month of April you are getting it right but not for May and subsequent months.
    So try doing this
    You will have to generate Work schedule for every month i.e give period 01.2010 to 01.2010 and not for entire year.
    For April your first change the reference date to 01.04.2010 and generate WS only for april for period 01.2010
    then change the reference date to 01.05.2010 and generate the WS for May only
    then change the reference date to 01.06.2010 and generate the WS for June only
    and continue for the rest of year..
    Its just an idea which you can try... do let me know if it works
    cheers,
    Ajay

  • Custom OVS is not filtering as per requirement.

    Hi ALL;
    I have created one XBO  of Account and i added "IsBuilding" one field whose type is "Indicator". The requirement is to create a custom OVS, which shows filtered account based on "IsBUilding" . But the custom OVS is not filtering the account based on "IsBuilding".
    Is their any solution for this.
    Thanks & Regards:
    Naser Ali

    Hi,
    You can try the following to debug and provide us more details.
    1. I am assuming you are trying to navigate by using a commandLink/Command Button ? If so, is the action handler for the command getting called ?
    2. Do you have input components in the page with Validators/converters attached to them ? If so, you may not watch for validation/conversion errors. If there are errors, the same page will be redisplayed. In that case you would need to associate message component to get more details on what went wrong.
    3. Have you set up the necessary navigation rules to navigate to the right page ?
    4. When you are adding components programatically, its better to assign explicit id's to your components, to avoid any unexpected behavior.
    Hope this helps.
    Regards
    -Jayashri

  • My aspx pages are not rendering.

    Hi all,
    I have developed a site, which is running fine on my local machine, but when I deployed it on live server.
    1. Site root folder contents shows (directory browsing). I disabled it in web.config but no relief.....
    2. When I click on .aspx pages. They do not render as HTML but their html is rendered as plain text.
    What could be the reason? 

    Hi shabbirhussain,
    Since the issue regards ASP.NET and website deployment. I suggestion you post the question in the ASP.NET forums at
    http://forums.asp.net/. It is appropriate and more experts will assist you.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Receipt page tags not rendering?

    I'm implementing Google Analytics ecommerce tracking in the receipt page.  I need to use these tags: {tag_orderid}, {tag_amount}.  But when I view the html source from the browser, the tags are still there.  They didn't change to values.  Is there any other configuration that needs to take place to make these tags render?
    How does BC know which template is the actual receipt page?  Ours has been renamed: ReceiptBuy.
    Thanks,
    Jim

    Hi Jim,
    Two things with this.
    1. By default this wont work unless you implement the cross domain stuff as your on a different domain when you pay etc.
    http://forums.adobe.com/thread/1074264
    2. These are the only tags availible on the Receipt Buy page:
    {tag_amount}
    Amount paid
    {tag_authorizationcode}
    Authorization code as the payment gateway returned
    {tag_errormessage}
    Error message associated with the payment
    {tag_invoicenumber}
    Invoice number
    {tag_orderid}
    Internal ID associated with the purchase
    {tag_paymentstatus}
    Status of payment (for example, Success, Failed, or Pending)
    How are you using them? They should render but they have to be on the Receipt Buy Layout and not on a custom page or anything.

  • Elementry Seach help is not working as per requirement.........plsss help

    Hi Friends,
    Here is my query on Sap Search help.
    I have created a customised elelemtary search help zclarify in the table EKKO for the field  zf_clarify.
    This search help i have created under the collective search help MEKK and the included search help ASH_MEKK.
    Now my probelem is whenever i am trying to seach the PO using the table by using the zf_clarify as the reference i am not getting anything.
    Ex- if you to to the selection criteria screen of EKKO table and try to searhch for any particular Purchase Order by selecting the PO,that po number will display in the selection screen.Similarly if i am trying to search through clarify option i am not getting any value in the clarify field.
    Please help me where i am doing wrong, I have one confusion that while creating the Data Element there is a search help option,there i have given MEKK and zclarify,but i am not getting any value in the table seletion screen.
    Please give me idea how to create the search help so that my problem will solve.
    Thanks a lot
    mrutyu n^

    Hi Raju,
    The below code only triggers
    FORM USEREXIT_MOVE_FIELD_TO_VBKD.
    VBKD-zzfield = xxxx-zzfield2.
    ENDFORM.
    when there is some manual change done on the Schedule line. So the control of the program will not stop on this form. Kindly suggest.
    Regards
    Siddharth

  • Search and replace string not work as per required

    please find the attachment. i am trying to replace the variable names but it doesnt replace the variable as i expected. Please help me in this
    Attachments:
    Replace String.vi ‏8 KB
    Replace String.vi ‏8 KB

    You haven't configured the strings to be "default". Hence, all string elements in your attached vi's are empty.
    I have no idea what you try to achieve without those strings....
    Norbert 
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Page not rendering in IE6

    I just updated my site and I discovered that the page is not rendering in IE6 (and IE5.5, but I suppose no one uses that anymore).
    All I can see is the red background color.
    The link to the site is www.schudden.net.
    Can anybody tell me why the page is not visible in IE6?

    I use a transparant png for the footer.
    I did not use any frames to construct my site, made this from a one column, fixed header and footer template in dreamweaver.
    The previous site was visible in IE 6.
    I actually made a whole new layout, but he content stayed the same.
    When I validate in dreamweaver it gives me two errors in the css file:
    Unsupported property: _position
    Affects: Firefox 1.5, 2.0, 3.0; Internet Explorer 6.0, 7.0, 8.0b1; Internet Explorer for Macintosh 5.2; Netscape 8.0; Opera 8.0, 9.0; Safari 2.0, 3.0
    Unsupported value: 'fixed'
    Affects: Internet Explorer 6.0, 7.0, 8.0b1; Internet Explorer for Macintosh 5.2
    Perhaps this is causing the error, but I don't know how to resolve this.
    There was also an error about the min-height I used. I deleted that option, but it did'n't help.
    This is the source code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Schudden fansite</title>
    <!-- TemplateEndEditable -->
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link href="../css/Noorderzon.css" rel="stylesheet" type="text/css" />
    <!--[if gte IE 5.5]>
    <![if lt IE 7]>
    <style type="text/css">
    div#Sticky {
    /* IE5.5+/Win - this is more specific than the IE 5.0 version */
    right: auto; bottom: auto;
    left: expression( ( 0 - Sticky.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
    top: expression( ( 0 - Sticky.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
    <![endif]>
    <![endif]-->
    </head>
    <body class="oneColElsCtrHdr">
    <div id="container">
    <div id="header">
    <h1> </h1>
    <!-- end #header --></div>
    <div id="mainContent">
    <div id="nav"><a href="index.html" title="Home">Home</a> | <a href="nieuws.html" title="Nieuws">Nieuws</a> | <a href="../schudden.html" title="Schudden">Schudden</a> | <a href="../speellijst.html" title="Speellijst">Speellijst</a> | <a href="../media.html" title="Media">Media</a> | <a href="../links.html" title="Links">Links</a> | <a href="http://www.tboek.nl/tboek/index.php?name=schudden" title="Gastenboek" target="_blank">Gastenboek</a> | <a href="mailto:[email protected]" title="Contact">Contact</a> | <a href="../nieuwsbrief.html" title="Nieuwsbrief">Nieuwsbrief</a></div>
    <!-- TemplateBeginEditable name="Contenttext" -->Contenttext<!-- TemplateEndEditable --></div>
      <div id="footer">
        <p> </p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    </body>
    </html>
    And this is the CSS code:
    @charset "utf-8";
    html, body {
    height: 100%;
    body {
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #333;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 9pt;
    background-color: #800000;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    height: 100%;
    body,td,th {
    font-size: 9pt;
    color: #333;
    text-align: center;
    /* Tips for Elastic layouts
    1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
    2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
    3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
    #container  {
    text-align: center; /* this overrides the text-align: center on the body element. */
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    background-color: #800000;
    top: 0px;
    bottom: 0px;
    padding: 0px;
    width: 100%;
    #header  {
    width: 960px;
    padding-top: 0;
    padding-bottom: 0;
    height: 160px;
    margin-right: auto;
    margin-left: auto;
    background-color: #DDDDDD;
    background-image: url(../images/header.jpg);
    #header h1  {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    #mainContent  {
    width: 960px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
    padding-right: 0px;
    padding-bottom: 0;
    padding-left: 0px;
    background-image: url(../images/mainbg.jpg);
    line-height: 15pt;
    .titlelink {
    font-size: 16px;
    font-weight: 500;
    font-variant: small-caps;
    color: #800000;
    .alignleft {
    text-align: left;
    #nav {
    text-align:center;
    margin-top:0px;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:10pt;
    color:#000;
    font-weight:700;
    padding-top:9px;
    padding-bottom:10px;
    text-decoration:none;
    background-image: url(../images/mainbg.jpg);
    background-repeat: repeat;
    width: 960px;
    #nav a {
    background:#fff;
    color:#000;
    text-decoration:none;
    #nav a:active {
    background:#fff;
    #nav a:hover {
    background:#fff;
    color:#000;
    font-size:10pt;
    padding-bottom:2px;
    border-bottom-width: 3px;
    border-bottom-style: dotted;
    border-bottom-color: #800000;
    a:link {
    color: #000;
    a:hover {
    color: #000;
    a:active {
    color: #369;
    a:visited {
    font-style: normal;
    color: #369;
    #footer  {
    color:#FFF;
    border: 0px solid orange;
    position:fixed;
    /* Netscape 4, IE 4.x-5.0/Win and other lesser browsers will use this */
    _position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    background-image: url(../images/bottom.png);
    height: 100px;
    padding-top: 0;
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 10px;
    .subtext {
    font-size: 8pt;
    color: #800000;
    .tableheader {
    font-weight: 700;
    color: #FFF;
    line-height: 30px;
    text-transform: uppercase;
    background-image: url(../images/tableheader.jpg);
    padding-left: 10px;
    table tr .tableheader {
    text-align: left;
    padding-left: 10px;
    .tablecontent {
    padding-left: 10px;
    text-align: left;
    .center {
    text-align: center;
    .justify {
    text-align: justify;
    .linkheader {
    background-image: url(../images/linkheader3.jpg);
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    #subnav {
    text-align:center;
    margin-top:0px;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:10pt;
    color:#000;
    font-weight:700;
    padding-top:9px;
    padding-bottom:10px;
    text-decoration:none;
    background-image: url(../images/mainbg.jpg);
    background-repeat: repeat;
    width: 960px;
    I hope this helps
    @pziecina : the validation errors are weird, because I have a doctype in my documents.
    Could this be caused by the fact that I have domainname linked to an external site (I use the free space I got from my provider, and the domainname link is forwarded to this space). Because, when I validate the original index.html file (http://members.home.nl/justme4u/index.html) it only gives me two errors.

Maybe you are looking for

  • HT2513 i cal on macbook pro no longer syncs with iphone

    i used to be able to sync i-cal on my macbook pro laptop with my iphone without a problem.  i changed the setting on my iphone to sync on the cloud.  i later reverted to the original settings after i found out that my laptop won't support cloud setti

  • ABAP-HR GET-PERAS , SlOW PERFORMANCE

    Hi All, I am using PNPCE LDB and while fetching records it takes lot of time .As per ST05 , time is taken by standard select statements inside GET PERAS. Can any one advice , what should we do so that performance increases . Should I use normal selec

  • Create Object - Mappin Object not available in ESB

    Hi, strange behavior: One of our users can´t create new mapping objects. While clicking the Create Objects button in ESB the pop-up is openening, but without the Mapping Objects entry. The user has sufficient authorizations: All "XI" roles are assign

  • Rmi cant resolve hostnames in j2sdk1.4.1_05

    We have a wireless app which is hosted on Wavelink using j2sdk1.4.1_05 . The wireless app uses rmi to perform a lookup on a remote object , and if the url uses a hostname address to refernce the remote object address we get a notbound exception. Howe

  • SSH startup script when the system reboot

    Hi all, I have a script for start/stop for sshd and it is fully tested and worked well. I have create the link to rc2.d. When the system reboot, 'PRNG not seed' is shown and the sshd cannot start up after reboot. Then, I can start sshd manually. Is i