Fk error display on Action page

I have a page that displays the content of a table. If you select one of the items and hit submit, it will navigate to another page that will allow you delete this item. Once the user hits delete the user is directed back to the page that displays the content of the table. If there is a fk error that needs to be displayed, is there a way to show this error on the page that displays the content of the table and not the page that has the delete button after the user hits the delete button?
Thanks,
Tim

First, I would not be using ParameterExists as this function
has been deprecated since CF 6 I believe and might not work in
later releases, use IsDefined("Add") instead.
Now on to your question, you cannot insert any values into
fields such as autonumber or "auto identity" fields, the database
inserts these values themselves when a new record is created.
For this purpose I would not use <cfinsert, instead use
<cfquery to insert into your database.
<cflock timeout="30" throwontimeout="yes"
name="InsertIntoConf2007Registration" type="EXCLUSIVE">
<cftransaction>
<cfquery name="Insert" datasource="DSSurvey">
INSERT INTO Conf2007Registration (Name, Email, County, Title,
Phone, Address1, Address2, PO, CityStateZip, Guests, Golfyes,
Company, Allergies, Vegie2, Social, Comments)
VALUES ('#form.Name#', '#form.Email#', '#form.County#',
'#form.Title#', '#form.Phone#', '#form.Address1#',
'#form.Address2#', '#form.PO#', '#form.CityStateZip#',
'#form.Guests#', '#form.Golfyes#', '#form.Company#',
'#form.Allergies#', '#form.Vegie2#', '#form.Social#',
'#form.Comments#')
</cfquery>
<!--- @@identity is a built-in variable that holds only
the most recent autonumber or auto identity value from a table, for
this reason we wrap the entire section in a cflock so that we do
not run into "race conditions" where 2 users could get the same
value or swap values. Once an insert starts everyone else has to
wait until the lock is finished so you guarantee that the newly
inserted autonumber is actually correct for that insert --->
<cfquery name="GetNewID" datasource="DSSurvey">
SELECT @@identity AS TheNewlyInsertedID
FROM Conf2007Registration
</cfquery>
<cfoutput>
Your registration number is #GetNewID.TheNewlyInsertedID#
</cfoutput>
</cftransaction>
</cflock>

Similar Messages

  • Getting an error displaying Omniportlet in Page Groups

    I am getting the following error when trying to display an OmniPortlet after trying to switch the URL of a web site.
    Error(Portlet: 100,Provider: 94762712)
    Has any one seen this?

    It turns out that when our hosting company changed our URL somehow the Omniportlet Portlet Provider was no longer 'registered' correctly. By re-registering the OmniPorlet Provider we now have access to our Omniportlets again.

  • Error displaying Log Files page from the Enterprise Manager App. Svr. CtL

    The error message is:
    Failed to initialize configuration management user session. The Oracle AS Repository API threw an exception when obtaining the connect string to the Metadata Repository
    Base Exception:
    Unable to establish connection to the Oracle Internet Directory Server
    ldap://xxxx.bu.edu:13060/
    The OID Process is running.
    But
    I cannot get the OC4J_SECURITY process started either.
    Can someone please help me with this.
    Thanks- Gary
    Edited by: garyNboston on Dec 11, 2008 2:21 PM

    Hi Sergio,
    did you already stop and start your SMD agent on OS level ? It is not enough to restart it from the SMD.
    kind regards
    Davy

  • How can I display XSLT transformer errors on a web page ?

    Hi,
    I have some JSP pages that access DB, create an XML based on DB data and then transform it into HTML through an XSLT stylesheet. Developing the XSL code it's easy to make mistakes and generate errors on trasformation, but what I receive on the web page is only a "Could not compile stylesheet" TransformerConfigurationException, while the real cause of the error is displayed only on tomcat logs. This is the code for transformation:
    static public void applyXSLT(Document docXML, InputStream isXSL, PrintWriter pw) throws TransformerException, Exception {
            // instantiate the TransformerFactory.
            TransformerFactory tFactory = TransformerFactory.newInstance();
            // creates an error listener
            XslErrorListener xel = new XslErrorListener();
            // sets the error listener for the factory
            tFactory.setErrorListener(xel);
            // generate the transformer
            Transformer transformer = tFactory.newTransformer(new SAXSource(new InputSource(isXSL)));
            // transforms the XML Source and sends the output to the HTTP response
            transformer.transform(new DOMSource(docXML), new StreamResult(pw));
    }If an exception is thrown during the execution of this code, its error message is displayed on the web page.
    This is the listener class:
    public class XslErrorListener implements ErrorListener {
        public XslErrorListener() {
        public void warning(TransformerException ex) {
            // logs on error log
            System.err.println("\n\nWarning on XEL: " + ex.getMessage());
        public void error(TransformerException ex) throws TransformerException {
            // logs on error log
            System.err.println("\n\nError on XEL: " + ex.getMessage());
            // and throws it
            throw ex;
        public void fatalError(TransformerException ex) throws TransformerException {
            // logs on error log
            System.err.println("\n\nFatal Error on XEL: " + ex.getMessage());
            // and throws it
            throw ex;
    }When I have an error in the XSL stylesheet (for examples a missing closing tag), I can find on tomcat logs the real cause of the error:
    [Fatal Error] :59:10: The element type "table" must be terminated by the matching end-tag "</table>".
    Error on XEL: The element type "table" must be terminated by the matching end-tag "</table>".but on my web page is reported just the TransformerConfigurationException message that is:
    "Could not compile stylesheet".
    How can I display the real cause of the error directly on the web page?
    Thanks,
    Andrea

    This code is part of a bigger project that let developers edit XSL stylesheets through a file upload on the system and we can't impose the use of any tool for checking the xsl. So, I need to display the transformer error on the web page.I see. This code is part of an editorial/developmental tool for developers to create and edit XSL stylesheets.
    As part of the editorial process, XSL errors during editing can be considered a normal condition. In other words, it is normal to expect that the developers will generate XSL errors as they are developing stylesheets.
    In this light, handling the XSL transformation errors is a business requirement that you need to handle. Using the Java Exceptions mechanisms, e.g. try / catch are inappropriate to handle business requirements, in my opinion.
    I suggest that you look at how you handle the occurence of XSL errors differently than what you currently have. You need to:
    (1) capture the Transformation exception on the server;
    (2) extract the message from the exception and put it into a message that can be easily understood by the user;
    The current error message that you have going to the web browser is not useful.
    And you should not have the Transformation exception sent to the web browser either.
    What you are attempting to do with the exception is not appropriate.
    Handle the Transformation exception on the Business tier and use it to create a useful message that is then sent to the Presentation tier. In other words, do not send Java exceptions to web browser.
    />

  • Reader XI, An Error Exists on this Page, Acrobat may not display

    Hello,
    I need some help please.  The small business I work for as a contract employee uses Google Doc's, and we input our information into spreadsheets on a daily basis, from our home computers.
    My home computer is XP Professional, and I am using  Mozilla Firefox 36.0. I know we are using older computer programs, but until we can afford newer computers we have to use what we have.
    Prior to today, when I printed off my spreadsheets in Google Doc's I had no problems, however tonight I just starting receiving this error message;  An error exists on this page.  Acrobat may not display the page correctly.  Please contact the person who created the file.
    I contacted my manager and had her send me a new spreadsheet, Invitation to Edit and input my information into the new spreadsheet.
    I then go to my timesheet, and highlight all the rows that I would like to print, then I hit the print key, then I get the box that states, opening my timesheet which is a PDF which is an Adobe Acrobat Document, then I have this message, What should Firefox do with this file?  I have it set to open with Adobe Reader (default) do this for files automatically like this.
    The file downloads, however I have noticed that Adobe at times has a difficult time opening up right away and then I receive the error message that Adobe isn't responding and I end up closing the program out and restarting my computer.
    This error message shows up just before the document begins to print and the document prints off with out any problems.
    I even did a repair and that didn't help.  My printer is a HP Color LaserJet 4500 and I've had no issues with Adobe prior to tonight.
    Do I need to uninstall Adobe Reader & Re-install the program?
    I can't send a copy of the file because it contains confidential material.
    I've also posted this message on Adobe Acrobat, and have not received a response.
    Please advise.
    Thank you,

    Hello,
    Thank you for responding.  Sorry that my message is so confusing.
    In Google Doc's we are able to highlight/selected portions of a PDF to print.
    In Mozilla Fox under Applications, Portable Format Document (PDF) Use Adobe Reader (default).
    So when I go to print off my timesheet, after I have highlighted everything, I get this message:  I've chosen to open my timesheet which is: Adobe Acrobat Document from https//docs.google.com. What should Firefox do with this file?  Open with Adobe Reader (default).
    Do this automatically for files like this from now on. I click on the OK and the file downloads as a PDF file in Adobe Reader.  On Google Doc's I click on the print key then I am able to open up my printer menu.  Its after I click on the print key that I receive this message.
    So what do I do please?
    Thank you,
    Maureen A. Mumm
          From: pwillener <[email protected]>
    To: Maureen Mumm <[email protected]>
    Sent: Friday, March 6, 2015 8:05 PM
    Subject:  Reader XI, An Error Exists on this Page, Acrobat may not display
    Reader XI, An Error Exists on this Page, Acrobat may not display
    created by pwillener in Adobe Reader - View the full discussion
    Maureen Mumm wrote: I then go to my timesheet, and highlight all the rows that I would like to print, then I hit the print key, then I get the box that states, opening my timesheet which is a PDF which is an Adobe Acrobat Document, then I have this message, What should Firefox do with this file?  I have it set to open with Adobe Reader (default) do this for files automatically like this.
    This is very confusing to me; Adobe Reader does not have such a functionality (to print highlighted/selected portions of a PDF). Could it be that this is a functionality of Google Docs? Also I have never seen a message "What should Firefox do with this file?". If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7262026#7262026 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7262026#7262026 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Adobe Reader by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Acrobat 9 Pro: Message "An error exists on this page. Acrobat may not display page correctly.

    Hi everyone,
    I posted this in September: "Over the past week, I have received pdfs from 2 different graphic design contractors that do not open correctly in Acrobat 9 Pro. There is an error in the document and when I scroll to the page where the error is, I get: "An error exists on this page. Acrobat may not display the page correctly. Please contact the person hwo created the PDF document to correct the problem." I did this, and the contractor remade the pdf 3 times, and I still couldn't open it. This contractor is already using CS5. For the problem today, I haven't asked for it to be remade yet--decided to see if I could find out if anyone else is having the same problem. The second contractor is using CS4. The only thing that I have done differently at my end over the past week is upgrade CS4 to CS5. I already had Acrobat Pro 9 so I didn't update it when I updated my CS5 products. Should I have upgraded Acrobat 9 anyway? Somehow, it doesn't feel right that this is the problem. Any info on this would be appreciated."
    I got one response from that posting, suggesting that the pdf was corrupted over email. That wasn't the problem.
    What I didn't say above is that whenever I got an error message upon opening the pdf and clicked OK, I got another message: "Insufficient data for an image." I found that one or all of the images in the pdf were missing. Upon further investigation, the contractor and I found that sometimes the error message pointed to a specific font used--that being a Helvetica Bold font. Once we substituted it with a Helvetica Neue LT Std Adobe Opentype font, we no longer had an issue.
    However, the problem rose it's ugly head today--what, 6 months later! I'm talking about 2 different pdfs this time.
    For PDF#1, I got this error message about the font: "Cannot extract the embedded font 'JNAGNS+HelveticaNeueLTStd-Bd'. Some characters may not display or print correctly."  When I click OK, I get another: "Insufficient data for an image." The images don't show up in the pdf. What I don't understand about this pdf is that this is one of those that was fixed in September. The only changes made in the document was to paragraph text--none to the text in the images. When I opened the revised pdf today, I am getting the same message again. This makes no sense.
    I returned to my September blog to see if any further advice had been posted, but nada--not even anything from Adobe about it. I goggled until I found where someone suggested running a "Report PDF syntax issues" analysis in Preflight. I did that and even though the analysis showed the pdf passed, I checked the fonts in the list and saw that the one pointed to in the error message showed that a long list of glyphs were missing on both pages of the pdf. I have asked my contractor to replace her font with a new one, in case it has gotten corrupted. Haven't a new pdf to open yet.
    Then when I opened PDF#2, I got the message: "An error exists on this page. Acrobat may not display the page correctly. Please contact the person hwo created the PDF document to correct the problem." When I ran the "Report PDF syntax issues" analysis in Preflight, I found got this warning: "Invalid operand(s) for operator (1 match on 1 page)". I clicked through and under "Page Description Errors/Invalid operand(s) for operator", it identifies Operator Name, Stream State, Operators Read, and Traversal Path. Under "Trigger Values" is says "Invalid operand(s) for operator: is true". None of this means a thing to me so I can't figure out what the problem is.
    Let me say this: Both the contractor and I are using CS5 and Acrobat Pro 9, on Lion. If it helps, the contractor also sent one of the problem pdfs back in September to my boss who is running Acrobat Pro 9 on Windows 7 and she got the same messages.
    Does anyone out there have a suggestion for us? PLEASE HELP!!!!

    Thanks to all for posting suggestions. As it turned out, the contractor who was having a problem reinstalled Acrobat 9. She works from home and is emailing the pdfs to me. Things were running smoothly until this past week, when the problem started again. Whenever I get a pdf that won't open properly or print, I asked her to zip it and it is no longer a problem. Last week, I had the same problem start with a contractor in Florida and she also zips the pdf when there is a problem. Now I am thinking the problem might be at my end. I wonder if something is happening to them when they come through our firewall at work. I asked IT about it before but they didn't have a clue what the problem might be. Right now, zipping is the answer...who knows how long that will continue to work.

  • Print Problem - PDF is OK on Windows 7, but OK on Windows XP with "Acrobat Reader An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem."

    I have received a PDF which prints fine in Windows 7 but with Windows XP I get "Acrobat Reader An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem." and a blank piece of paper passes through the printer. I appreciate that Windows XP is no longer supported but I would like to think that the solution to this problem is not too difficult!
    I have tried Acrobat 9, 10 and 11.
    Any advice (apart from use Windows 7! ) would be most welcome.
    Many thanks.

    If you use the same Adobe Reader versions with the same PDF on Windows 7 and XP, then I would expect the outcome to be the same.
    Is this a local or online PDF?
    If local, is the file really exactly the same?
    If online, in what browser?

  • Acrobat 9 Pro: Message "An error exists on this page. Acrobat may not display page correctly. Please

    Over the past week, I have received pdfs from 2 different graphic design contractors that do not open correctly in Acrobat 9 Pro. There is an error in the document and when I scroll to the page where the error is, I get: An error exists on this page. Acrobat may not display the page correctly. Please contact the person hwo created the PDF document to correct the problem." I did this, and the contractor remade the pdf 3 times, and I still couldn't open it. This contractor is already using CS5. For the problem today, I haven't asked for it to be remade yet--decided to see if I could find out if anyone else is having the same problem. The second contractor is using CS4. The only thing that I have done differently at my end over the past week is upgrade CS4 to CS5. I already had Acrobat Pro 9 so I didn't update it when I updated my CS5 products. Should I have upgraded Acrobat 9 anyway? Somehow, it doesn't feel right that this is the problem. Any info on this would be appreciated.

    Thanks for the quick reply. Would zipping the pdf protect it through email...like I said, this is the first time I've had this problem and I've been getting pdfs though email for years.

  • Error in Acrobat 8: An error exists on this page. Acrobat may not display the page correctly...?

    Hi,
    We perform the e-signing on any PDF using our custom e-signature plug-in. Once that's done, when we try re-opening the PDF in Acrobat version 8.0.0.0, we get the following error:-
    "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem"
    Please note that this error occurs intermittently and is NOT observed in Acrobat 7 or 9.  Also, when a plain PDF is opened (i.e. a PDF without any signature on it) then there is NO error.
    Could you let me know what could be the issue here? I read it in Acrobat 8.1.3 release notes that such an error was a known bug in version 8.0.0.0 (http://kb2.adobe.com/cps/407/kb407016.html), but I am not sure of its cause.
    Let me know your comments/suggestions.
    Thanks!

    I am getting the same error even in Acrobat version 8.1.3.
    Additionally, I noticed that if we click on menu ‘Advanced->Sign&Certify->Preview Document’, then we get a notification as “This document is not PDF/SigQ compliant and may display inconsistently”. On clicking  ‘View report’ on that notification, the below dialog pops up. It has errors listed as:-
    Code 4000 : Unrecognized PDF content. The document contains PDF content or custom content not supported by the current version of Acrobat.
    Code 4002: PDF content contains erros.
    However, if we sign the PDF using default adobe signature functionality and reopen that PDF, the error does NOT come and the notification also says ‘This document is PDF/SigQ compliant’.
    Can anybody please suggest what could be missing in the custom sign that we apply? Is it because of any of the missing fonts or any other resources?
    Awaiting reply!
    Regards.

  • Error displaying jsp page

    hi everybody, I get this error when i try to display a jsp page:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Exception in JSP: /visualizzavini.jsp:6
    3: <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    4: <%@ taglib uri="http://myfaces.apache.org/tomahawk" prefix="t"%>
    5: <%@ taglib uri="http://myfaces.apache.org/sandbox" prefix="s" %>
    6: <f:loadBundle basename="it.tecnologieweb.vinispallacci.web.messages" var="msgs"/>
    7: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    8: <html xmlns="http://www.w3.org/1999/xhtml">
    9: <head>
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:506)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.ServletException: No faces context?!
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:843)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:776)
         org.apache.jsp.visualizzavini_jsp._jspService(visualizzavini_jsp.java:94)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.jsp.JspException: No faces context?!
         org.apache.myfaces.taglib.core.LoadBundleTag.doStartTag(LoadBundleTag.java:77)
         org.apache.jsp.visualizzavini_jsp._jspx_meth_f_loadBundle_0(visualizzavini_jsp.java:111)
         org.apache.jsp.visualizzavini_jsp._jspService(visualizzavini_jsp.java:72)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:334)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)i'm new of jsf i try to find out what's wrong but i can't resolve by myself, but anyway this code works correctly on another pc ( not mine that's the matter!!)
    can anyone help me?thank u all

    This exception roughly means that the f:loadBundle component cannot find the FacesContext.
    Look in your web.xml if the FacesServlet is defined correctly and what its url-pattern is. If it is defined correctly and its url-pattern is for example *.jsf, then you'll have to invoke the visualizzavini.jsp as visualizzavini.jsf in the browser. This way the FacesServlet will be invoked and precreate the FacesContext so that the JSF components can access the FacesContext.

  • When I try to download 'Pages' from iTunes, an error displays 'Application Not Compatible. This application requires iPhone 5.0 Software Update' WHY? This keeps happening.

    When I try to download 'Pages' from iTunes, an error displays 'Application Not Compatible. This application requires iPhone 5.0 Software Update' WHY? This keeps happening.

    I sounds like you have the first generation (1G) iPod Touch with an iOS earlier than 2.0,  Yu can identify your ipod here:
    Identifying iPod models
    You can identify your iOS version by going to Settings>General>About and look by Version.  Yu can update ti iOS 3.1.3 (the lated for the 1G) by this link.  It is a paid update.  You may have to try another browser to get he sublink to work correctly.
    Purchasing iOS 3.1 Software Update for iPod touch (1st generation)
    What computer OS and version do you have and what version of iTunes is installed on the computer?

  • Sharepoint 2007 designer - sqldatasource and grid view not displaying on SP page (An unexpected error has occured)

    Hi All,
    I am using sharepoint designer 2007 and am trying to use a sqldatasource to populate a gridview and then display that on an .aspx page. While in designer everything seems to configure okay. I am able to test the connection and display the data
    as expected from the sqldatasource within designer. Then I have the gridview control use the sqldatasource. At that point the grid (within designer) displays the headings as expected. The data that is displayed in the cells is "test data" rather
    than actual data value - I'm not sure if this is normal - for example, the data values in every column / row are all equal to 'abc'. Date values are all equal to current date.
    Then when I actually display the sharepoint page (via Preview in browser)  I get an error "An unexpected error has occurred".
    I am using SQLExpress on my laptop as the database for the sqldatasource. I have tried both integrated (windows) and SQL authentication with the same results.
    Here is the aspx code from designer:
    <asp:GridView runat="server" id="GridView1" AutoGenerateColumns="False" DataSourceID="SqlDataSource1">
     <Columns>
      <asp:boundfield DataField="Case Creation Date Time" HeaderText="Case Creation Date Time" SortExpression="Case Creation Date Time">
      </asp:boundfield>
      <asp:boundfield DataField="Case #" HeaderText="Case #" SortExpression="Case #">
      </asp:boundfield>
      <asp:boundfield DataField="Source" HeaderText="Source" SortExpression="Source">
      </asp:boundfield>
      <asp:boundfield DataField="Priority" HeaderText="Priority" SortExpression="Priority">
      </asp:boundfield>
      <asp:boundfield DataField="Status" HeaderText="Status" SortExpression="Status">
      </asp:boundfield>
      <asp:boundfield DataField="Category" HeaderText="Category" SortExpression="Category">
      </asp:boundfield>
      <asp:boundfield DataField="Creator group" HeaderText="Creator group" SortExpression="Creator group">
      </asp:boundfield>
      <asp:boundfield DataField="Assigned Group" HeaderText="Assigned Group" SortExpression="Assigned Group">
      </asp:boundfield>
      <asp:boundfield DataField="Security Event Title" HeaderText="Security Event Title" SortExpression="Security Event Title">
      </asp:boundfield>
      <asp:boundfield DataField="Security Event Resolution Details" HeaderText="Security Event Resolution Details" SortExpression="Security Event Resolution Details">
      </asp:boundfield>
      <asp:boundfield DataField="SLA Achieved" HeaderText="SLA Achieved" SortExpression="SLA Achieved">
      </asp:boundfield>
      <asp:boundfield DataField="Event Reported Date Time" HeaderText="Event Reported Date Time" SortExpression="Event Reported Date Time">
      </asp:boundfield>
     </Columns>
     </asp:GridView>
     <br>
     <br>
     <br>
     <asp:SqlDataSource runat="server" id="SqlDataSource1" ProviderName="System.Data.SqlClient" ConnectionString="Data Source=WN-MNA79GY0V0JD\SQLEXPRESS;Initial Catalog=CD_OPS_DATA;Persist Security Info=True;User ID=Sharepoint_User;Password=&quot;xxxxxx&quot;"
    SelectCommand="SELECT * FROM [Critical Cases] ORDER BY [Case Creation Date Time] DESC">
     </asp:SqlDataSource>
     <br>
     <br>
    &nbsp;</td>
     </tr>
    </table>
    </asp:Content>
    Any help is appreciated.
    Thanks !

    Thanks Daniel.
    I am unable to connect to my SQL EXPRESS db on my laptop via SPD 2007: I get the error -
    I am able to access that database via SQL Server Mgmt. Studio (both with Windows and SQL Server authentication). I can also access a SQL Express database on a remote server from the exact same SPD 2007 session: I get -
    So, I wonder why I can connect to the remote but not the local? Anyway, if you have any ideas I would appreciate it. I am willing to do the work from the article you mention but wanted to rule out there being a simple DB access issue first.  I'll also
    start to find the ULS logs and review them.
    Thanks again !!
    Update on 1-3-14: Hi, since yesterday I also have been able to connect to the SQLEXPRESS database / table and display the .aspx page with the gridview in Visual Studio 2010.
    Update 1-26-14: Sorry for the delayed response.  I determined the reason why I could not connect to the SQLEXPRESS instance on my laptop was that there was a local host intrusion (firewall) rule on my machine that prevented an inbound connection
    on port 1433.  SharePoint server >>> inbound connect on port: 1433 >>> to Laptop device, not allowed. 
    Thanks.

  • An error exists on this page. acrobat may not display the page correctly.

    While opening a pdf document it shows an error as "An error exists on this page. acrobat may not display the page correctly. Please contact the person who has created this pdf to correct the problem". The pdf was made in 1.4 Adobe 5.x version. Any suggestions.

    I suggest you contact the person who has created the PDF in order to fix the problem.

  • Reader 11.0.0.1 An error exist on this page. Acrobat may not display the page correctly. Please cont

    "An error exist on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem."
    Any ideas how to get rid of this? Realistically its not practical to contact them, nor the other 1,000,000 web site owners whom host pdf's.
    I really would like to disable the pop up only.
    Seem to get it on quite a few PDF's. This web page seems to have quite a few that produce the problem.
    http://www.2010.cannell.co.uk/manuals/manuals_porsche.html
    click on the link to the pdf, scroll down a few pages and it pops up.
    I do not get the error when using reader 10, only the new 11.0.0.1 version.

    Hi Pat,
    No problem withthe link you supplied.
    This is one that has the problem "948 Cayenne Owners Manual - 2008 - Turbo" http://www.2010.cannell.co.uk/manuals/manuals_porsche.html
    Just FYI, I look after 8000 clients, have the same problem on 3 of my test machines.
    All windows 7, 64 bit  IE9 fully patched.
    Using 32 bit IE
    Testing prior to upgrade from 10 to 11

  • To display the same page when an error occurs.

    Hi,
      I need to display the same page when an error occurs in the page. For example, I am validating a few fields in a page. If an error occurs, then same page is to be displayed.
      I am presently using MVC type programming.
    Thanks in advance.
    Regards,
    Vara

    I usually use the Message class, for handling all possible validations. In the DO_HANDLE_DATA, do the validation, and if your validation fails, put your message in the message attribute available for that method. As you have not given a pointer to a new page, it will refresh that same page.
    If your validation is successful, go to next page.
    In the layout of this page(where you require validation), there is an attribute called page and it has get_message method. Call that method at the appropriate place in the layout.
    For more information , refer to :
    http://help.sap.com/saphelp_470/helpdata/en/91/b197ce280011d5991f00508b6b8b11/frameset.htm
    Web Applications and BSP --> Programming Environment -->
    Handling Incorrect Entries
    Let us know, if this answered your query.
    Regards,
    Subramanian V.

Maybe you are looking for

  • I'm getting Big white borders on the sides of my background,how to fix

    I've created my first page for my website I've centered it but theres still two big white borders on either side of the page,If anyone knows how to get rid of it,i've been trying for the past two hours,It would be greatly appreciated

  • DYNAMIC RECEIVER

    Hi, I have file (from FTP) to multiple idoc scenario, where in a file with PO details comes and i create one idoc per PO. the structure is as follows <BATCH>-1 <POHEADER>-0-UNBOUNDED -<POITEM>-0-UNBOUNDED Now my requirement is that i need to do 3 val

  • Disk Full Error

    I have an OfficeJet 4500 G510n all in one and trying to scan i received the above error. I need to continue to scan but I am at a loss of how to ocntinue wht this error.

  • Oops, something went wrong at our end

    Skype for Web was working on my home system (in Chrome), although I could not get the audio and vido to work, just the text chat. When trying from my work notebook (in Chrome 43.0.2357.81 m), when I login, I get this message (every time, for the last

  • Moving frames

    Feeling a little Tarantino, I was wondering if it is possible to do the following in Adobe Premiere Elements 10.  If I shrink the size of the frame from a specific clip, to about half the size of the window, is there a way to make this smaller frame