Search

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

Matching Posts

  • Re: Where can I get the Microsoft.mshtml.dll (I'm a Visual Web Developer 2008 Express Ed. user)

    I have a Windows Server 2008 machine, and I am facing the same problem again. .NET 2.0 SDK does not support Windows Server 2008, instead I see .NET 3.5 SDK for Windows Server 2008: Windows SDK for Windows Server 2008 and .NET Framework 3.5 http://www.microsoft.com/downloads/details.aspx?FamilyId=E6E1C3DF-A74F-4207-8586-711EBE331CDC&displaylang=en However, this did not install Microsoft.mshtml.dll. My question, what steps should I follow to get Microsoft.mshtml.dll installed in my Windows Server
  • Re: unable to uninstall - MVC Templates not visible

    Thanks Mike, This piece of information solved my issue. However, I see there are some additional templates beside the project templates, for example adding Controller classes . I guess this is what you get when you right click the controller folder on the VS2008 solution explorer. I use the latest Preview 2, here is what I see beneath the install folder: C:\Program Files\Microsoft ASP.NET MVC Preview 2\Temp>dir 2008/02/27 19:37 1,046 MvcControllerItemTemplateP2.cs.zip 2008/02/27 19:37 1,001 MvcControllerItemTemplateP2
  • Re: Where can I get the Microsoft.mshtml.dll (I'm a Visual Web Developer 2008 Express Ed. user)

    Thanks very much for the prompt response. The idea of installing the older version 2.0 SDK to where Web Developer (3.5 SDK partly... subset for web I believe ) does make me feel rather uncomfortable. However, if there is no other options (is there ?), I guess this is the only way to do so... or maybe uninstall the Web Developer and install 2.0 SDK and then reinstall Web Developer. Anyway, thanks. yagimay
  • Re: Where can I get the Microsoft.mshtml.dll (I'm a Visual Web Developer 2008 Express Ed. user)

    So is it OK to install a .NET 2.0 SDK after you have installed the Visual Web Developer 2008 ?
  • Where can I get the Microsoft.mshtml.dll (I'm a Visual Web Developer 2008 Express Ed. user)

    Hi, I use a 3rd party ASP.NET control which refers to Microsoft.mshtml.dll to run it's GUI designer. I found out by installing Visual Web Developer 2008, this dll does not get installed. I discovered that not the Web Developer but installing the VB(C#) 2008 Express Editions will get the SDK for VS2008 Express Ed. Tools. However, this SDK did not include the Microsoft.mshtml.dll either. I remember .NET 2.0 SDK contained the Microsoft.mshtml.dll. Could you kindly point out how and where could I
  • VS2008 does not generate licenses.licx automatically for websites

    I have a 3rd party ASP.NET 2.0 component which requires run-time license. With VS2005, dropping the control from the toolbox would generate a license.licx file, a text file with assembly name, version and public key token info. VS2005 will let you buid a run-time license which is an assembly with the name App_Licenses.dll from this file. Using VS2008, I noticed the license.licx file is not generated anymore. Has anything of the run-time licensing on ASP.NET controls changed from VS2008 ? Thanks,
    Posted to Visual Studio 2008 (Forum) by yagimay on 12/12/2007
  • Re: HOWTO: Write controls compatible with UpdatePanel without linking to the ASP.NET AJAX DLL

    Thanks for the great post Eilon. I was trying to clarify your post with ASP.NET AJAX Beta 2. Instead of MathWidget register its scripts via ScriptManager, I made it register via Page.ClientScript. I meant to ensure the control not work on UpdatePanel unless it register its scripts via ScriptManager. However it seems to work even when the scripts are registered via Page.ClientScript. Is the post still valid with Beta 2 or has there been any enhancement ? Here is what I do. 1. Modify MathWidget.cs
    Posted to ASP.NET AJAX UI (Forum) by yagimay on 11/27/2006
  • Re: Event handler gets removed after AJAX refresh.

    I was able to get this work by using PageRequestManager.add_pageLoaded instead of window.onload. <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"/> <script type="text/javascript"> Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(init); function init(sender,args){ var tx=$get("TextBox1"); $addHandler(tx,"click",txt_click); } function txt_click
    Posted to ASP.NET AJAX UI (Forum) by yagimay on 11/22/2006
  • Event handler gets removed after AJAX refresh.

    Hi, I add an event handler on window.onload. However, this seems to get removed after AJAX refresh. Following are steps to reproduce behavior. What may I have missed. Thanks. yagimay [steps] 1. Create an ASP.NET AJAX-Enabled Web Site. 2. Add ScriptManager, UpdatePanel and a TextBox (inside the panel) on web form. 3. Add following script block to web form. <script type="text/javascript"> window.onload=init; function init(){ var tx=$get("TextBox1"); $addHandler(tx,"click",txt_click); } function
    Posted to ASP.NET AJAX UI (Forum) by yagimay on 11/20/2006
Page 1 of 1 (9 items)