Search

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

Matching Posts

  • Re: Xml Editor no longer available

    I've now tried uninstalling Visual Studio and Re-installing, then applying Service Pack 1 but *still* no XML Editor. What do I need to do to add the XML Editor as an editor option in the "Open with" dialog box for xml files? Please, I would really appreciate any help here...
    Posted to Visual Studio 2008 (Forum) by VR2 on 10/13/2008
  • Xml Editor no longer available

    Hi there I have Visual Studio 2008 Team Edition installed and patched to SP1. I then installed Windows PowerShell from here: http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx as it was a pre-requisite for installing SQL Server Express "With Tools", which I got from here: http://www.microsoft.com/downloads/details.aspx?FamilyId=7522A683-4CB2-454E-B908-E805E9BD4E28&displaylang=en After installing both, the next time I used VS 2008, and attempted
    Posted to Visual Studio 2008 (Forum) by VR2 on 10/2/2008
  • Re: Client side set hidden field value not POSTing back

    Sorry, I don't actually know the answer but, well, what happens when you step through using the javascript debugger? You would then be able to see the values being set in the hidden field, and when and if those values change. Pls use the debugger, it's your friend, the days of "alert" style javascript debugging are thankfully over. I also notice that you are trying to grab values like "results[i].ICode" and "sString" - are you sure these are public fields, did
    Posted to Client Side Web Development (Forum) by VR2 on 10/2/2008
  • Re: How to get control reference from javascript file

    That's a good idea NC01 - I just thought though that maybe it could be extended/simplified when you have a bunch of Id's you want to get: var globals = {}; globals.controlIdentities = {}; globals.controlIdentities.someControl1 = '<%= someControl1.ClientID %>' ; globals.controlIdentities.someControl2 = '<%= someControl2.ClientID %>' ; Also, in your script file, include a ///<reference path="page.aspx"/> and you'll get nice intellisense too?
    Posted to Client Side Web Development (Forum) by VR2 on 10/1/2008
  • Re: WebForm_InitCallback(); javascript error object expected

    Use the javascript debugger to help here. It could be that the object expected is the function "WebForm_InitCallback". You could check the rendered source code (and any javascript references) to ensure this is defined. You could also (via the debugger or in the url window after the page has loaded) see if that function is defined (eg "javascript:alert(WebForm_InitCallback.toString())"; Assuming it is in the source code but is to actually defined in the DOM, you probably have some
    Posted to Client Side Web Development (Forum) by VR2 on 10/1/2008
  • Re: issue with javascript function

    You could also try using the javascript debugger to step through your code. You can force the debugger by adding: debugger; into your javascript.
    Posted to Client Side Web Development (Forum) by VR2 on 10/1/2008
  • Re: Can I do this in JavaScript?

    Yeah, that looks OK. _globalVar would be in scope during execution of the inline method so should get updated. Not sure about "NS.WSObject.wsMethod", looks like a FF/Netscape only way of calling web services?
    Posted to Client Side Web Development (Forum) by VR2 on 10/1/2008
  • Re: Switch between Flash files automatically

    As NC01 indicated, you would use an ajax call to attempt to load the content from that location, and then check the HTTP code returned from the server (200 = OK, 404 = not found etc).
    Posted to Client Side Web Development (Forum) by VR2 on 10/1/2008
  • Re: Send Javascript after page load occurs

    Yes your approach is that when the page is initially rendered on the client, you are using <%= %> to write out the values into the page render. If I understand correctly, subsequest postbacks are made via a partial render (Update Panel). Partial renders will NOT re-render your javascript function, so even if you change the server value of, say, _pagename, the javascript will not be updated. I think his is your problem. This being the case, one way to possibly get things working would be to
    Posted to Client Side Web Development (Forum) by VR2 on 10/1/2008
  • Re: Very Simple Custom Control - VS2008 Designer Problem

    You may be able to hack a nasty workaround by: Deleting all files in C:\Documents and Settings\<USER>\Local Settings\Application Data\Microsoft\<PRODUCT>\9.0\ProjectAssemblies And then removing the WebSite from the solution and using a WebApplication instead.
    Posted to Web Forms (Forum) by VR2 on 8/20/2008
Page 1 of 10 (96 items) 1 2 3 4 5 Next > ... Last »