Search

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

Matching Posts

  • Re: Random issue fetching script resources

    I started receiving a few random errors like this a week or so ago. After doing some reading, I came across the following MS article that indicates that it is a bug in IE8, and that there is no fix in IE for this yet (scroll to the bottom for info): https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=434997
    Posted to Web Forms (Forum) by Wyerarch on 10/16/2009
  • RequiredFieldValidator and Browser "Back" Button

    Hi all, Has anyone else experienced issues with the RequiredFieldValidator not firing when a form has been completed, and the person then hits the back button in their browser, and sends the form data again? On a form I have created, the validators are there to ensure that the person completing the form supplies all of the information. When I test the form it is fine, and when I submit the form, all is fine. However, if I complete the form, and then use the browser history back button to get back
    Posted to Client Side Web Development (Forum) by Wyerarch on 7/17/2009
  • Re: RequiredFieldValidator and Browser "Back" Button

    Submit the form click the browser back button submit the form again but only in firefox. Thanks the comment re: disabling the button, but that then prevents anyone from then using the form does it not?
    Posted to Client Side Web Development (Forum) by Wyerarch on 7/17/2009
  • Re: How to connect db in Pocket PC 2003

    What is the error?
    Posted to Free For All (Forum) by Wyerarch on 6/23/2009
  • Re: DNS and host headers

    This may sound like a stupid reply, but I presume that the source(s) are allowed to access via the VPN? From what I understand from the description above, you are wanting access to an IIS instance, that resides behind a VPN tunnel? In which case the logical checks are: 1) Can the source visit a site / page that already exists in the VPN - if not, the VPN isn't setup correctly 2) Does the IIS instance work internally, if you set an entry in c:\windows\system32\drivers\etc\hosts ? - if not, IIS
    Posted to Configuration and Deployment (Forum) by Wyerarch on 6/23/2009
  • Registering an async unload scriptblock?

    Hi All, I have been using the drag and drop library from script.aculo.us, and found it to be really good. However, I have serious memory leak problems with my application, which I believe to be caused by the fact that during postbacks I am re-creating the Draggable objects without disposing of them first. I.e. what I am doing at the moment is: 1) Create my script as string 2) Register it with the ScriptManager.RegisterClientScriptBlock method when my async postback trigger control is fired What I
    Posted to ASP.NET AJAX UI (Forum) by Wyerarch on 6/23/2009
  • Re: advice on application

    Maybe i'm missing something, but I can't see anything in the requirements that state it must be web based? A lot of what you need to do is much easily accomplished using a windows service installed on one of the servers in question - in this instance, if a server is down it should be important that is is brought back up anyway! (take a look at IPMonitor as a piece of software to tell you so).
    Posted to Getting Started (Forum) by Wyerarch on 6/23/2009
  • Re: Resize modalPopup - Extender

    I use the script.aculo.us library from http://script.aculo.us (documentation from drag here: http://wiki.github.com/madrobby/scriptaculous/draggable ) You can call the resize methods also, as I do. As long as your div, or whatever it maybe is exposed to the dom, you can resize it. You will need the i.e developer toolbar to find out what the end DOM ID of the modal is though, or set the behaviourID of the modal explicitly. Hope this helps, if not, let me know. Thanks, James.
    Posted to ASP.NET AJAX UI (Forum) by Wyerarch on 6/23/2009
  • Re: A Strange startup when testing pages

    I had this problem on my PC, it was an addon that was blocking IE from loading. If I killed IE, it would load the second time. In my case it was the google toolbar. Try disabling all your addons in IE, and then see if it happens still. If that fixes it, it's then just a process of elimination to see which one is causing the problem.
    Posted to Getting Started (Forum) by Wyerarch on 6/2/2009
  • Re: PDF Generation using Crystal Reports

    Yes. I do this in a couple of applications of my own. For example, if you only wanted to get the section of the document between <title> and </title>, you can use regular expressions to do so, e.g: private string getHtmlTitle( string sText) { string strOut = Regex .Match(sText, "(?<=<title>).*?(?=</title>)" , RegexOptions .IgnoreCase).Groups[0].Value; return strOut; } If you wanted to only get the paragraph <p> content for example, you could do: private
    Posted to Crystal Reports (Forum) by Wyerarch on 4/6/2009
Page 1 of 40 (396 items) 1 2 3 4 5 Next > ... Last »