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

Similar Messages

  • Mozila3.6 not load properly . it is not redirect my action page.When fill my enquiry form.

    Mozila3.6 not load properly . it is not redirect my action page.
    I am submiting my enquiry form that time mozila 3.6 is not work properly .it not load fully .it is not redirect my action page again .it is not load properly .always show done and loding is stope but it is not done .please help.
    This is my web URL and enquiry form: http://kormanmdorg.perfectyourself.net/consultation
    It is work fine in IE and chrome browser .Please check.

    Bad code on the page. The error console reveals:
    Error: document.frm1 is undefined
    Source File: http://kormanmdorg.perfectyourself.net/confirmation.php
    Line: 11

  • Cannot send email. When I click Write the window does not open properly. Does not have the "send, spelling, attach security save" line.

    Cannot send email. When I click Write the window does not open properly. Does not have the "send, spelling, attach, security, save line there. Then when I click File, then Send now it will not send. A message comes up saying my SMTP server failed. Have check and everything appears to be o.k.

    Hi Stephen,
    What version of MS Office are you using?
    Are you facing the issue similar to that mentioned here: Acrobat/Reader: Attach to Email button not working for PDFs referenced from long URLs
    Open Acrobat. Use the click-path Edit - Preferences - select the Category "Email Accounts". In the dialog there is the "Add Account" drop-down. Select "Add Other". The "Add Webmail Account" dialog presents. You'll fill out the dialog's fields with Outlook.com settings. (don't forget the "Advance Settings" button)
    From a look-see on the web it appears that the following are the needed settings. BUT, you'll be wanting to validate.
    The Outlook.com SMTP server settings for sending outgoing messages from an email program on desktop, cell phone or mobile device are:
    • Outlook.com SMTP server address: smtp.live.com
    • Outlook.com SMTP user name: Your full Outlook.com email address (not an alias)
    • Outlook.com SMTP password': Your Outlook.com password
    • Outlook.com SMTP port: 587
    • Outlook.com SMTP TLS/SSL encryption required: yes
    For incoming messages from an Outlook.com account to an email program using POP, use the Windows Live Hotmail POP3 server settings.
    The Outlook.com POP server settings for downloading new incoming messages to email program, cell phone or mobile device are:
    • Outlook.com POP server address: pop3.live.com
    • Outlook.com POP user name: Your full Outlook.com email address (not an alias)
    • Outlook.com POP password: Your Outlook.com password
    • Outlook.com POP port: 995
    • Outlook.com POP TLS/SSL encryption required: yes
    Regards,
    Rave

  • After installing acrobat my Microsoft office package does not work properly, word will not open and in my email i can't select anything with the mouse

    After installing acrobat my Microsoft office package does not work properly, word will not open and when I want to write an email in my outlook email i can't select anything with the mouse. so copy past en delete are not an option.@

    Are you using any MS Office third party Add-ins? Test:  Remove third party Add-ins other than PDFMaker.  Test to see if the MS Office apps run afterward.
    Did you attempt to repair MS Office?  Test:  Go to Add/Remove Control Panel run Repair.
    Finally, have you tried testing to see if it's PDFMaker?  Test: Use the Add/Remove Control Panel to modify the Acrobat installation to remove PDFMaker.  See if MS Office applications launch and behave correctly?

  • Cell with boolean value not rendering properly in Swing (custom renderer)

    Hello All,
    I have a problem rendenring boolean values when using a custom cell renderer inside a JTable; I managed to reproduce the issue with a dummy application. The application code follows:
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.lang.reflect.InvocationTargetException;
    import java.util.ArrayList;
    import java.util.Date;
    import java.util.List;
    import java.util.logging.Logger;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.SwingUtilities;
    * Simple GUI that uses custom cell rendering
    * @author josevnz
    public final class SimpleGui extends JFrame {
         private static final long serialVersionUID = 1L;
         private Logger log = Logger.getLogger(SimpleGui.class.getName());
         private JTable simpleTable;
         public SimpleGui() {
              super("Simple GUI");
              setPreferredSize(new Dimension(500, 500));
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setLayout(new BorderLayout());
         public void constructGui() {
              simpleTable = new JTable(new SimpleTableModel());
              simpleTable.getColumnModel().getColumn(2).setCellRenderer(new HasItCellRenderer());
              SpecialCellRenderer specRen = new SpecialCellRenderer(log);
              simpleTable.setDefaultRenderer(Double.class, specRen);
              simpleTable.setDefaultRenderer(String.class, specRen);
              simpleTable.setDefaultRenderer(Date.class, specRen);
              //simpleTable.setDefaultRenderer(Boolean.class, specRen);
              add(new JScrollPane(simpleTable), BorderLayout.CENTER);          
              pack();
              setVisible(true);
         private void populate() {
              List <List<Object>>people = new ArrayList<List<Object>>();
              List <Object>people1 = new ArrayList<Object>();
              people1.add(0, "Jose");
              people1.add(1, 500.333333567);
              people1.add(2, Boolean.TRUE);
              people1.add(3, new Date());
              people.add(people1);
              List <Object>people2 = new ArrayList<Object>();
              people2.add(0, "Yes, you!");
              people2.add(1, 100.522222);
              people2.add(2, Boolean.FALSE);
              people2.add(3, new Date());
              people.add(people2);
              List <Object>people3 = new ArrayList<Object>();
              people3.add(0, "Who, me?");
              people3.add(1, 0.00001);
              people3.add(2, Boolean.TRUE);
              people3.add(3, new Date());
              people.add(people3);
              List <Object>people4 = new ArrayList<Object>();
              people4.add(0, "Peter Parker");
              people4.add(1, 11.567444444);
              people4.add(2, Boolean.FALSE);
              people4.add(3, new Date());
              people.add(people4);
              ((SimpleTableModel) simpleTable.getModel()).addAll(people);
          * @param args
          * @throws InvocationTargetException
          * @throws InterruptedException
         public static void main(String[] args) throws InterruptedException, InvocationTargetException {
              final SimpleGui instance = new SimpleGui();
              SwingUtilities.invokeAndWait(new Runnable() {
                   @Override
                   public void run() {
                        instance.constructGui();
              instance.populate();
    }I decided to write a more specific renderer just for that column:
    import java.awt.Color;
    import java.awt.Component;
    import javax.swing.JTable;
    import javax.swing.UIManager;
    import javax.swing.table.DefaultTableCellRenderer;
    * Cell renderer used only by the DividendElement table
    * @author josevnz
    final class HasItCellRenderer extends DefaultTableCellRenderer {
         protected static final long serialVersionUID = 2596173912618784286L;
         private Color hasIt = new Color(255, 225, 0);
         public HasItCellRenderer() {
              super();
              setOpaque(true);
         @Override
         public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
              Component comp = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
              int desCol = table.convertColumnIndexToView(1);
              if (! isSelected && value instanceof Boolean && column == desCol) {
                   if (((Boolean) value).booleanValue()) {
                        comp.setForeground(hasIt);     
                   } else {
                        comp.setForeground(UIManager.getColor("table.foreground"));
              return comp;
          * Override for performance reasons
         @Override
         public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) {
              // EMPTY
         @Override
         protected void firePropertyChange(String propertyName, Object oldValue, Object newValue) {
              // EMPTY
         @Override
         public void revalidate() {
              // EMPTY
         @Override
         public void validate() {
              // EMPTY
    } // end classBut the rendering comes all wrong (a String saying true or false, not the expected checkbox from the default renderer) and also there is a weird flickring effect as this particular boolean column is editable (per table model, not show here)...
    I can post the table model and the other renderer if needed (didn't want to put too much code on the question, at least initiallty).
    Should I render a checkbox myself for this cell in the custom renderer? I'm puzzled as I expected the default renderer part of the code to do this for me instead.
    Thanks!
    Edited by: josevnz on Apr 14, 2009 12:35 PM
    Edited by: josevnz on Apr 14, 2009 12:37 PM

    camickr
    Thats because the default render is a JLabel and it just displays the text from the toString() method of the Object in the table model.What I meant to say is that I expected the JCheckbox not a String representation of the boolean value.
    Thats because a different renderer is used depending on the Class of data in the column. Look at the source code for the JTable class to see what the "default >renderer for the Boolean class" is. Then you can extend that or if its a private class then you will need to copy all the code and customize it.At the end I looked at the code and replicated the functionality I needed. I thought than maybe there was a way to avoid replicating the same logic all over again in order to implement this functionality. Good advice, though.
    see you learned nothing from your last posting. This is NOT a SSCCE. 90% of the code you posted is completely irrelevant for the described problem. There is abosutelly no need to post the custom TableModel, because there is no need to use a custom TableModel for this problem. The TableModel has nothing to do with how a column is rendererd.The custom table model returns the type of the column (giving a hint to the renderer on what to expect, right?) and for the one that had a problem it says than the class is Boolean. That's why I mentioned it:
    public Class getColumnClass(int columnIndex) {
        // Code omited....
    You also posted data for 4 columns worth of data. Again, irrelevant. Your question is about a single column containing Boolean data, so forget about the other columns.
    When creating a SSCCE you don't start with your existing code and "remove" code. You start with a brand new class and only add in what is important. That way hopefully if you made a mistake the first time you don't repeat it the second time.That's what I did, is not the real application. I copy & pasted code in a haste from this dummy program on this forum, not the best approach as it gave the wrong impression.
    Learn how to write a proper SSCCE if you want help in the future. Point taken, but there is NO need for you to be rude. Your help is appreciated.
    Regards,
    Jose.

  • OSX Mountain Lion "Disk not ejected properly" USB-Finder not responding

    Hello,
    I just upgraded to OSX Mountain Lion late 2008 macbook pro. Whenever i plug in a USB, it detects it fine. But then when i copy anything to it, it starts but then give the error message "Disk was not ejected properly". After that, my finder hangs and i have to force quit it. And then it doesnt launch unless I do a restart of my computer by pressing and holding the power key because normal restart doesnt work. Happen to anyone? any solution? Thanks!

    Connect the USB device then right or control click the USB device icon on the Desktop, then click Eject.
    Then re connect the device and try copying files.

  • I purchased the gaming app from app store and I used it for some time but now suddenly the app is not working properly it's not starting properly and just dies down after the start and comes Back to homepage need help please guys help me out with this!

    Guys needed your help with my real racingHD game app it's not working properly even after paying for it I don't know why it's not working having trouble with it cause it won't star smooth need help guys

    Read Mitch's post on the sad ipod in this thread:
    http://discussions.apple.com/message.jspa?messageID=2369954#2369954

  • Hi I have just aquired a Mac Pro 2006, Dual Xeon 266, 3Gb RAM 360GB HD, I have tried to add another 2TB HD but for some reason it is not identified properly and will not erase

    I have spoken to Apple tech, who suggested upgrading to Snow Leopard, but reading through the tech specs I believe my Mac Pro can support Lion OS, any thoughts on this matter?  I also added a 2Tb HD, which 10.4.1 the current OS on the machine, does not recognize properly.  Will Snow Leopard solve this problem? Or will I have to remove the 360Gb HD and Format/erase the 2T disk and set it up as the new Boot disk?  JackTar1957

    You have a good memory for this, the hatter:
    #Mac Pro
    Date introduced
    Original Mac OS X included
    (see Tips 1 and 3)
    Later Mac OS X included
    (see Tip 1)
    Mac OS X Build(s)
    (see Tip 2)
    Mac Pro (Late 2013)
    Dec 2013
    10.9
    10.9.2
    13A4023, 13C64
    Mac Pro (Mid 2012)
    Jun 2012
    10.7.3
    10.8, 10.8.3
    11D2001, 12A269, 12D78
    Mac Pro (Mid 2010)
    Aug 2010
    10.6.4
    10.7, 10.7.2, 10.7.3
    10F2521, 10F2554, 11A511a, 11C74, 11D2001
    Mac Pro with Mac OS X Server (Mid 2010)
    Aug 2010
    10.6.4
    10.7, 10.7.2, 10.7.3 (Server)
    10F2522, 11A511a, 11C74, 11D2001 (Server)
    Mac Pro (Early 2009)
    Mar 2009
    10.5.6
    10.6
    9G3553, 10A432
    Mac Pro (Early 2008)
    Jan 2008
    10.5.1
    10.5.2, 10.5.4
    9B2117, 9C2031, 9E25
    Mac Pro
    Aug 2006
    10.4.7
    10.4.8, 10.4.9, 10.4.10, 10.5
    8K1079, 8N1430, 8N1250, 8K1124, 8P4037, 8R3032, 8R3041, 9A581, 9A3129
    Mac OS X versions (builds) for computers

  • Email not working properly, web apps not at all, 3g crashes....what's next?

    Email either won't connect or says no content. My web apps don't work at all since 2.0.2, they just crash before they ever start. And when I have 3g coverage, it crashes, and it really it was not faster than my old iphone. Do I have a bad phone? I am restoring now, we'll see if that does anything.

    Most people posting here have a problem, but not all.
    I'm not experiencing any of the problems provided by the OP. I'm also not having any 3G connection problems.
    To the OP, if a Restore from your iPhone's backup does not resolve it, try restoring as a new iPhone or not from your iPhone's backup. If there is a problem with your iPhone's backup, you are restoring the problem when restoring your iPhone from the backup.
    If neither restore option resolves your problems, call AppleCare at (800) 694-7466, or make an appointment at an Apple Store if there is one nearby.

  • Laptop did not sleep properly and did not like being stuffed in the laptop bag

    This morning I closed the lid on my laptop, saw that the sleep icon on the hinge came on, put the laptop in my bag, put it in the trunk of the car and went to work. Twenty minutes later I get to work and grab my bag. The bag was extremely hot! And when I flipped it open and touched the end of the laptop, it was even hotter. To the point where it did not feel good to touch.
    The exhaust fan end was at the top end of the bag and is the end that I was touching. The fan was going full speed.
    I brought it into the office, opened it and there was a DOS screen that listed all of the available boot devices and pretty much said nothing was available. I hit enter and it cycled through a couple DOS screens but basically it didn't want to do anything. So, did a hard shut down and let it cool down to where it was comfortable to the touch. Powered back on and was able to get into Windows fine. The battery was fully charged when I left the house but was down to 40%. By the time I got PC Wizard up, the internal temps had fallen back to normal.
    Got my W500 about a week ago. Wiped Vista Ultimate and replaced with Windows 7. For the most part, everything I need to work is working fine. Still have a few devices that probably aren't completely configured properly. I did this whole routine yesterday for the first time (to and from work) without any issues so I am a little confused what happened this time.
    Any thoughts? Anything I should look for? Specific drivers I need to update? I see a couple of threads around sleeping issues but haven't confirmed anything on my end. What steps should I take to make sure that the thing really did go to sleep before stuffing it in my bag again? 
    So far it seems OK but I can only imagine what might have happened if I had the fan end at the bottom of the bag, it was in the afternoon and 100 degrees and if my drive were a little longer. I think it would have been messy.
    Thanks,
    Matt
    Solved!
    Go to Solution.

    This was actually the problem but I just figured it out today (without seeing the RealStranger post).
    The problem has not happened again since the first time, but I've been pretty vigilant about making sure it is actually asleep. However, this morning as I was packing up to go to work, I had just put it to sleep and was in the process of turning off my cordless USB mouse (Logitech VX Nano FTW), when I heard the computer beep and saw that it had come out of sleep mode. I played with it a couple of times and sure enough, turning the mouse on and off triggers it to wake up.
    I haven't actually changed any settings yet (since I just saw this post) but I will shortly.
    Thanks! I can quit worrying about it now.

  • Lenovo S 850 phone is not working properly(Please do not buy Lenovo phones)

    I bought the phone on date 16/08/2014 from The Mobile Store,Delhi.After 2-3 weeks I was facing problem with the touchpad and was given in the service center(Service No-SRIN2411410070001(Abhishek Technologies, Ahmedabad)). I got the phone from service center after two weeks.
    After 1 week from service I am facing more problems in the phone. List are described below:
    1-Battery Problem: If I talk, play a Video or games it drains the battery very quickly(in between one and half hour)
    Previously i have watched two movies(around 5 hours) still the battery was on 50 percent charge.
    2-Auto Restart: Yester I found the phone is automatically restared again and again(not stopping) and I switched off
    it, after words works as expected. But happening
    3-Profile Auto Change Vibrate:When My phone is in General mode and made a call, Its automatically changed to vibrate mode after call.
    4-Text pad in Desktop:There is no link for text pad in Desktop/Home screen, But still it is displaying there some time.
    Not going from there if i touch on back. After restart it was gone.
    It is not completed 3 months and Once it was on Service center and Seceon time this is happening with loads of problem.Can you please take over on all this issue. Can you please provide me a new phone, Because everyday I am facing a new problem.
    If you go for any local brand also I thik that phone should not have this much of problen is such a few time.
    I am using LENOVO Laptop from last 8 years and still it is working fine.SO I have gone for the Lenovo mobile, But I did a wrong choice.I am totally unsatishfied.

    are you talking about voiceover where the phone is reading things out loud to you? you have to double tap things in voiceover in order to select them. you'll need to go to settings > general > accessibility > and turn off voiceover there

  • RAM Not working properly and files not deletes (2 in 1)

    Hello. Ive installed 6Gb of ram on my iMac, and system shows all 6. But in-use only 2. When im restarting computer, its works normaly, but when trying to open any default app - 4gb disappears =( U can see this on screenshot here: http://photo.vibos.org/#287 ... How can i fix this? And why its happening?
    And second problem:
    ive deleted some files from external hdd to trash and now cant empty her =(
    when im clicking on "empty" or "safe empty" my CPU and RAM uses for 100% and then computer freezes. cant understand how delete this files from trash =(
    hdd is SATA, 1Tb and used before in windows, so its has ntfs file system. om my mac im using paragon ntfs as active solution and mac fuse as secondary, not active rigth now.
    Thx 4 help and sry f
    P.S.: om my mac book i cant install photoshop because i have extended fs with registry (or some like that). how can i change fs type or install ps on other partition of hdd?

    The machine has a 1 year warranty, book an appointment with your local Apple Store or AASP to have it looked at.
    You can try doing a SMC reset however I don't think that is the solution.
    SMC RESET
    • Shut down the computer.
    • Plug in the MagSafe power adapter to a power source, connecting it to the Mac if its not already connected.
    • On the built-in keyboard, press the (left side) Shift-Control-• Option keys and the power button at the same time.
    • Release all the keys and the power button at the same time.
    • Press the power button to turn on the computer.
    PRAM RESET
    • Shut down the computer.
    • Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    • Turn on the computer.
    • Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    • Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    • Release the keys.

  • HT1414 after a software update the device is not working properly and can not open any website.

    I can operate it properly after an software update . Now no website cannot be opened and cannot get emails. Main thing cannot go to tunes and app store .

    First Try This...
    Close All Open Apps... Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear...
    Usually takes about 15 - 20 Seconds... ( But can take Longer...)
    Release the Buttons...
    If no joy... Try a Restore...
    1: Connect the device to Your computer and open iTunes.
    2: If the device appears in iTunes, select and click Restore on the Summary pane.
    Restoring  >  http://support.apple.com/kb/HT1414

  • Cfmail not working properly, Log files not updating

    I'm still trying to get this CFmail problem corrected.  The problem is CFmail is only send the mail out sporadically.  In many cases it will send out the mail and still put the message in the undeliverable folder.  My smtp server shows that the connection was opened and closed.
    I'm pretty sure that I'm dealing with a CF problem  since the mail logs are screwing up as well.  In the past when I'd have  a problem with CFmail I could go to my mail.log and see what was  happening.
    Those logs looked like this:
    "Error","scheduler-2","05/28/09","11:00:43",,"Invalid Addresses;    nested exception is:      javax.mail.SendFailedException: 550 No such  user (website_notification) Cached lookup "
    "Error","scheduler-2","05/28/09","11:00:43",,"Invalid Addresses;    nested exception is:      javax.mail.SendFailedException: 550 No such  user (wayneseattle) -ERR [email protected] not found "
    "Error","scheduler-2","05/28/09","11:00:43",,"Invalid Addresses;    nested exception is:      javax.mail.SendFailedException: 550 No such  user (ca-sl-broardmoor) Cached lookup "
    Now my logs look like this:
    "Error","scheduler-2","12/07/09","10:05:36",,""
    "Error","scheduler-4","12/07/09","10:17:22",,""
    "Error","scheduler-0","12/07/09","10:33:37",,""
    "Error","scheduler-0","12/07/09","10:53:53",,""
    Where did the error messages go?  
    Could this be a SMTP response message formating issue?  Any ideas in how  to figure this one out would be very much appreciated.

    Which version of CF are you using? You may have already checked this but under "Server Settings -> Mail -> Mail Logging Settings" there's an option box for "Log all mail messages sent                      by ColdFusion". If you have it unchecked you may not see all of that data.

  • Getting error messege i tunes was not installed properly. you may not be able to import  cd .  please reinstall itunes.  i have done this several times and i still get the same messege

    i have taken itunes completely off my computer and redownloaded it several times and keep getting the same messege and not i am getting a messege that itunes needs a repair and i click yes for the repair and nothing happens,

    Could you post your diagnostics for us please?
    In iTunes, go "Help > Run Diagnostics". Uncheck the boxes other than DVD/CD tests, as per the following screenshot:
    ... and click "Next".
    When you get through to the final screen:
    ... click the "Copy to Clipboard" button and paste the diagnostics into a reply here. (Use your Ctrl-V keyboard shortcut to paste.)

  • Ever since updating my LG G2 to VS98026A the Quiet mode does not work properly and is not controllable.

    My LG G2 started to have problems since the latest system update.  Previously, the phone worked perfectly! 
    I now cannot control the Quiet mode settings and the vibrate and silent modes are no longer selectable.  This is not acceptable.  I have no way of silencing the phone if I need to.
    Is there a way to return the phone to the previous state?

    http://www.verizonwireless.com/support/knowledge-base-87344/
    No can't go back but if you reset you g2 make sure you use cloud storage ahead of time on WiFi to backup data or connect to a computer and know your Google account. If on more everything plan you can use the free 25gb of vcloud storage

Maybe you are looking for

  • Web Service Client(Console App) not working on Windows Server 2008 R2 Standard Edition

    I am trying to consume an ASMX Web Service in a console app, its working fine in Windows 7,Windows Server 2012 Standard,Windows Server 2008 R2 DataCenter,Windows Server 2008 R2 Enterprise, But its not working in Windows Server 2008 R2 Standard Editio

  • JOIN for BSEG, BSIS, BSAS, MSEG, BKPF and MKPF

    I am developing a report related to G/L . i am using the Tables BSEG BSIS BSAS MSEG BKPF MKPF ............please give me the Joinings of these tables.......how exactly we can join and get the prefect Data.... Thank U waiting for ur replies.... Title

  • HT5037 import old iPhoto library in iPhoto '11

    I would like to import an old iPhoto library (iPhoto '08 version 7.1.5 (378) ) from my old iMac G5 into my macbook which is running iPhoto '11 version 9.4.3 (720.91. When I am chosing the import function, I can see a blurred file "iPhoto lirbary" but

  • Problem in Treemap

    Problem occur when go to code WordData data = (WordData)iter.next();Below is the code i have printWords(words2.values()); static void printWords(Collection wordData) {              System.out.println(words2.values());            Iterator iter = wordD

  • Work Flow Defined.

    Dear Friends, Good Evening. I hope all doing Well. I need to define a seprate work flow for Discrete Quality Module.Condition is If the material is rejected that deails sent to higher position person for approval. Once he will approvel System generat