Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. mtessier

    Date format validation

    That's a scenario I was hoping to avoid since there's several date fields in multiple pages that need to be changed, but at this point it looks like my only good option. Thanks, Mike
  2. mtessier

    Date format validation

    The CultureInfo override is required for the CompareValidator to do a DataTypeCheck on a Date field because it (supposedly) uses the ShortDatePattern property of CultureInfo. I have now proven that is is not 100% true. Based on the coding that I've demonstrated, the date validation fails for...
  3. mtessier

    Date format validation

    Hello All, As per this article by Peter Blum, I am validating my date fields in dd/mm/yyyy format as follows: BasePage.vb: Protected Overrides Sub InitializeCulture() Dim setLang As String setLang = Language & "-ca" Dim newCulture As CultureInfo =...
  4. mtessier

    Acrobat 9 - Remove ASP FDF file reference from pre-populated PDF

    Hello All, We have some pre-populated PDFs using the technique outline in this forum post: http://www.tek-tips.com/viewthread.cfm?qid=756675 The problem is that these PDFs were created using Acrobat 5. I knew where to find the reference to the ASP file in the PDF using that software. We...
  5. mtessier

    Customize Style and Logo Per User

    Hello All, We have a few clients who when they login to our website, the look and feel (logo and colors) reflects their company branding instead of ours. We’re looking to implement the same functionality into our BusinessObjects XI 3.0 InfoView (JSP). I’ve found articles that show me how to...
  6. mtessier

    CLOB output parameter in ASP using OO4O

    Hello All, I’ve got an Oracle 9i package stored procedure that returns XML in an output parameter. The output parameter was XMLType, but since OO4O doesn’t support XMLType I’ve changed the parameter to CLOB. I’ve tested the procedure in an ASP.NET 2.0 page (using ODP.NET) and it works, but...
  7. mtessier

    Crystal report in ASP.NET 2.0 - Load report failed error

    Problem solved. Since this web application uses Windows authentication, the appropriate Windows user accounts (or groups) need Write permission to the C:\Windows\Temp folder in addition to the permissions that were setup for IIS_WPG. Thanks, Mike
  8. mtessier

    Crystal report in ASP.NET 2.0 - Load report failed error

    More new information. I've setup additional tracing and the inner exception is "Invalid file name". I tried renaming the report without spaces in the filename, and no luck. I've also looked in the c:\windows\temp folder and the temp files are being created and left there. We have coded the...
  9. mtessier

    Crystal report in ASP.NET 2.0 - Load report failed error

    Hello again, New information after looking closer at the Modules.exe logs. I looked at the Test and Production logs side-by-side instead of using the "Differences..." feature, and it turns out that both versions of CrystalDecisions.Shared get loaded from both servers. I don't understand why...
  10. mtessier

    Crystal report in ASP.NET 2.0 - Load report failed error

    Hello All, We’ve just implemented a solution where ASP.NET 2.0 is opening a Crystal report. We’ve done this successfully in the past, so we thought that we’ve set everything up properly. This has been working well in our Dev and Test environments for quite some time, but the promotion to...
  11. mtessier

    CompareValdidator not working in French

    Hello All, I have a strange problem. The web application is ASP.NET 2.0 and it supports both en-ca and fr-ca cultures. By default, the site is in English but the user has the option to switch to French on the home page. This is the only page where the user can switch languages. We have a...
  12. mtessier

    ODP.NET freezing on ExecuteNonQuery

    Hi Cookstarr, No, we never found a proper resolution to this problem. Setting Pooling=False in the connection string is the solution that has worked so far. Thanks, Mike
  13. mtessier

    ODP.NET freezing on ExecuteNonQuery

    That would be 5 seconds for a complete request/response and even that's only in cases where hundreds of rows of data are processed as XML. Don't see it that slow often enough for it to be a concern. I may have stumbled on something that did the trick yesterday afternoon. Our connection string...
  14. mtessier

    ODP.NET freezing on ExecuteNonQuery

    As I previously mentioned, when the procedure calls return successfully they return fairly quickly (5 seconds max), so the procedures aren't super-slow. I have breakpoints setup in my DAL on all stored procedure calls and I have a list of 6 of them that have exhibited the freezing behaviour...
  15. mtessier

    ODP.NET freezing on ExecuteNonQuery

    Hi Jason, Thanks very much for the reply. I tried stripping out the try/catches and it didn't make a difference. No exception has ever been thrown when this freezing behaviour happens. I have a developer looking at the PL/SQL of the procedure that exhibits this behaviour the most often to...
  16. mtessier

    ODP.NET freezing on ExecuteNonQuery

    Oops, forgot to mention that we use Oracle 9i. Thanks, Mike
  17. mtessier

    ODP.NET freezing on ExecuteNonQuery

    Hello All, I'm not sure if I'm posting this to the right area, so let me know if I should post it elsewhere. I'm having an issue calling PL/SQL stored procedures in ASP.NET 2.0 using ODP.NET (Oracle.DataAccess assembly version 9.2.0.700). Many times the web page freezes during processing and...
  18. mtessier

    VS2005 Remote Debugging of ASP.NET 2.0

    Yes, I am running Msvsmon.exe on the dev web server first. I have tried running it by starting the app from the server (using UltraVNC), I have tried starting it using the Windows Service, and I have tried creating a network share on the "Remote Debugger" folder on the web server and starting...
  19. mtessier

    VS2005 Remote Debugging of ASP.NET 2.0

    Hello All, We’ve been struggling to set up remote debugging of ASP.Net 2.0 in Visual Studio 2005. We don’t have IIS installed on our machines and we still support a lot of classic ASP, so our local ASP.NET development server is not an option. I’ve done a lot of Googling and tried a lot of...
  20. mtessier

    Displaying Crystal report on ASP.NET page

    Hello All, This issue has been resolved, so I thought I would share the solution that worked for us and hopefully save others some pain. There seem to be a lot of threads on the web about this issue, but no clear-cut resolutions. There is no Oracle driver that comes with the Crystal classes...

Part and Inventory Search

Back
Top