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 Chriss Miller 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. warpped

    Blocked Page - Sometimes

    We have a user that needs to go to a web site that requires a login. On the first attempt, we get in without any trouble. Future attempts yields this message from the web site: "Web application returned no output to the Web server or the output was not accessible." We are logged in though...
  2. warpped

    Response.Write a PDF

    This is just one of many issues I'm working through. Luckily, they have all been minor. I start with a link that opens a page (invreport.aspx) that runs the Crystal Report. Crystal then exports as PDF. Then I do a response.redirect to the (reportviewer.aspx) page which does the...
  3. warpped

    Response.Write a PDF

    Yeah. I did. I even hard coded the path to the file. If I launch the page from a command button it works.
  4. warpped

    Response.Write a PDF

    I did that. It is firing, just not displaying PDF.
  5. warpped

    Response.Write a PDF

    Here is the code... Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load If Not Page.IsPostBack = True Then Dim fname As String fname = Trim(CType(Session("FNAME"), String))...
  6. warpped

    Response.Write a PDF

    I have a VS2003 .Net 1.1 app. that when the page loads, it calls a sub routine that exports a Crystal report to a PDF. It then redirects to another page that displays the PDF in the browser. I am upgrading my apps. to VS2005 and .Net 2.0. The above no longer works, all I get is a blank page...
  7. warpped

    Web Page Caching on Server

    Thanks to you all for such a quick response. Isadore's advice is exactly what I needed. Thanks again.
  8. warpped

    Web Page Caching on Server

    Is it possible to cache a page on the web server so that all users see the same data from that page? Then after a period of time, the server refreshes the data on the page. So, the user gets cached data, queried from SQL Server, even after clicking refresh until the server updates the content...
  9. warpped

    Claculated Measure - Different Tables

    Thanks. That's what I figured.
  10. warpped

    Claculated Measure - Different Tables

    I have a field in a fact table - QTY. I have a unit of measure conversion field - CONVERSION_RATE - in another table. My cube needs to display a value that is QTY/CONVERSION_RATE. How do I do this if both columns are not in the same fact table? The only way I can see is to use a view as the...
  11. warpped

    Error when running view with outer join

    I have a view with several joins, including an outer join. The view is run from within a stored procedure. The stored procedure is executed from a custom VB application. When the custom VB application executes the procedure, it runs ok. We have a logic problem with the stored procedure (not...
  12. warpped

    Netmeeting Remote Desktop Sharing Fails to Start

    Netmeeting was set to "Use this certificate for privacy". Changed it to use privacy only. Also disabled receive video, and it now works.
  13. warpped

    Netmeeting Remote Desktop Sharing Fails to Start

    Unfortunatly, I don't know which hotfix it was that broke it. When I try and start the service, it just doesn't start and the following is in Event Viewer: Event ID: 7031 The NetMeeting Remote Desktop Sharing service terminated unexpectedly.
  14. warpped

    Netmeeting Remote Desktop Sharing Fails to Start

    I am running a Win2k server SP2. I have to run service pack 2 because of an application running on the server. After a security patch was installed, remote desktop sharing fails to enable. Then RDS icon appears in the system tray, but disappears when the mouse is moved over it. Is there some...
  15. warpped

    ASP.NET Windows Integrated Security

    Yes, that works. But, I do not want to make it available to all users. I need to deny access for all, and allow access for specified users/roles. I can get it to allow to all or deny to all, but I cannot deny to specific or allow to specific users.
  16. warpped

    ASP.NET Windows Integrated Security

    This is the first time I'm useing Integrated Security, and I am probably missing something silly. I have IIS set to use Integrated Security and anonymous access is disabled. My web.config file is set to: <authentication mode="Windows" /> <authorization> <allow roles="Domain Admins" />...
  17. warpped

    Eliminate zero from summary calculation

    Thanks for your help lbass! I ended up changing my query to eliminate the NULL values.
  18. warpped

    Eliminate zero from summary calculation

    I'm not getting an error, it runs OK. What's happening is that the Standard Deviation is incorrect because it is factoring in zeros. Using the above numbers (I have to modify it)... Item Test Result1 Result2 Result3 5464 Q123 12.5 12.6 12.3 8465 Q123 11.2...
  19. warpped

    Eliminate zero from summary calculation

    Thanks for your reply. I am currently doing doing that, here are the formulas //@TESTAVG,located in the detail section - Determine of the //value is String or Number. If number, then average them IF NUMERICTEXT({Result3}) THEN TOTEXT((TONUMBER({Result1}) + TONUMBER({Result2}) +...
  20. warpped

    Eliminate zero from summary calculation

    The data looks something like this... Item Test Result1 Result2 Result3 5464 Q123 12.5 12.6 12.3 8465 Q123 11.2 11.2 11.3 9595 Q987 OK OK OK 6585 Q987 OK OK OK 7574 Q323 .23 .22...

Part and Inventory Search

Back
Top