Search

You searched for the word(s): userid:655371

Matching Posts

  • Re: Updated to 3.5SP1, publishing to host without SP1. System.Web.UI.ScriptReferenceBase error

    Workaround, don't use Scripts tag in ScriptManager.. Here's what I put in place that seems to work fine: string srScript = ( string )Cache[ "PreviewDragDrop" ]; if (srScript == null || srScript.Length == 0) { StreamReader sr = new StreamReader (MapPath( "~/PreviewDragDrop.js" )); srScript = sr.ReadToEnd(); sr.Close(); Cache.Insert( "PreviewDragDrop" , srScript, new System.Web.Caching. CacheDependency (Server.MapPath( "~/PreviewDragDrop.js" ))); } ClientScript
  • Re: Updated to 3.5SP1, publishing to host without SP1. System.Web.UI.ScriptReferenceBase error

    I've narrowed down what is causing it but still don't have a solution on how to fix it. Its only a problem on pages that load scripts(loading the services may or may not be related, but I'm unfortunately not able to do anymore testing until I get back to work this evening) < asp : ScriptManager ID ="sm_Default" runat ="server" EnablePartialRendering ="true" > < Services > < asp : ServiceReference Path ="~/PaperSports.asmx" /> <
  • Updated to 3.5SP1, publishing to host without SP1. System.Web.UI.ScriptReferenceBase error

    I updated to 3.5 SP1 and VS2008 SP1 rtm yesterday on our machines dutifuly. Now when I publish our site to our provider(discountasp.net) we're getting "Could not load type 'System.Web.UI.ScriptReferenceBase' from assembly 'System.Web.Extensions'" errors. Works fine locally, worked fine published before the SP1 upgrade. How does one target the non-SP1 3.5 framework if SP1 breaks ajax apps as there's no telling when the hosting provider is going to update. Or am I
  • TreeView in UpdatePanel HoverNodeStyle stops working after a node is selected

    I'm having an issue with a TreeView inside of an UpdatePanel. When I first load the page, the HoverNodeStyle works as expected, you move your mouse over any of the nodes, or if you expand a node and hover any of the children, it sets the fore and back colors correctly. But when you select any of the nodes or fire any other event on the page, it no longer has the hovering effect. Am I just missing something or is TreeView or UpdatePanel broken? < asp : TextBox ID ="tb_Filter" runat
    Posted to ASP.NET AJAX UI (Forum) by NXTwoThou on 6/18/2008
  • Re: IE7 information bar for PDFs coming up on one site, but not another

    Figured it out. Eventually loaded up Filddler and looked at the low level differences between the requests. One of the pages had an UpdatePanel on the MasterPage that surrounded the ContentPlaceHolder that held the print button. Once I removed the UpdatePanel it no longer comes up with the information bar. The low-level clue was the one with the UpdatePanel no longer had a Referring: header which is what I'm assuming was triggering IE7 to bring up the prompt.
    Posted to Web Forms (Forum) by NXTwoThou on 1/9/2008
  • Re: IE7 information bar for PDFs coming up on one site, but not another

    Both use this type of code: Response.ContentType = "application/pdf" ; Response.Clear(); Response.AddHeader( "Content-Disposition" , " attachment; Filename=Invoice .pdf" ); PDFInvoiceToStream( HttpContext .Current.Response.OutputStream ); Response.Flush(); Response.End(); One brings up a "open/save" dialog, the other an information bar, which you then have to click to accept, then redo whatever you where doing on the page and it comes up with the open/save
    Posted to Web Forms (Forum) by NXTwoThou on 1/9/2008
  • IE7 information bar for PDFs coming up on one site, but not another

    I've got two websites, both using the same code for sending a PDF to the client, both are running on the same server, both have the same settings in IIS6, Acrobat 8 on the machines, both are in the same Internet zone in IE7. One comes up with the information bar "To help protect your security, Internet Explorer has blocked this site from downloading files to your computer. Click here for more options...", the other doesn't. I can have both sites open in different tabs and go back
    Posted to Web Forms (Forum) by NXTwoThou on 1/9/2008
  • Re: Safari for windows and viewstate

    I don't have anyone who's using v3 beta on OS-X, this was v3 beta on XP. I noticed the twice clicking effects too. Fiddler helped Safari blow up faster, so I didn't get much research on it either and eventually decided on the "its beta" and worry about it when it becomes more mature(or when I had a lot more time). It didn't seem to affect my site, just really annoying to use.
    Posted to State Management (Forum) by NXTwoThou on 6/13/2007
  • Re: Problem installing May Futures

    No resolution here, but, frankly, I've been too busy to deal with it. I'll wait till the next release and fight with it then. If I had time, I'd uninstall all the silverlight stuff and retry installing the futures.
  • Re: Safari for windows and viewstate

    After lots and lots and lots and lots of experimentation, discovered two things that fixed my issue. First, I had if (p.Request.ServerVariables["http_user_agent"].IndexOf("Safari") != -1){p.ClientTarget = "uplevel";} in my masterpage for fixing some rendering issues I was having with the mac version from a couple of years ago. When I commented that out, I was occasionally able to get past the login page but most of my AJAX stuff kept coming up with the mac error(even
    Posted to State Management (Forum) by NXTwoThou on 6/12/2007
Page 1 of 7 (64 items) 1 2 3 4 5 Next > ... Last »