Search

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

Matching Posts

  • Re: MVC Preview 2 Suggestions

    I strongly agree with the strongly typed databinding suggestion. Right now, databinding is a weak link in the compile time application validation. I would like to see this with the regular Asp.net databinding, too.
    Posted to ASP.NET MVC (Forum) by willc on 3/8/2008
  • Re: Installation problems with VS2008 Beta 2

    I hope the link below helps. I had this problem and there was a corrupted install of Microsoft Web Designer Tools that was stopping the install from installing and fixed it using the procedures outlined. Willc http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2242584&SiteID=1
    Posted to Visual Studio 2008 (Forum) by willc on 10/30/2007
  • Reinstallation of VS2008 Problems

    I have been having a blast with VS2008! I have not had any problems until a few days ago. The server explorer started throwing missing dll exceptions so I uninstalled VS2008 and all the components. I have tried to reinstall but I get the following errors: [10/04/07,06:28:09] Microsoft Visual Studio 2008 Professional Edition - ENU: [2] ERROR:Error 1704.An installation for Microsoft Document Explorer 2008 is currently suspended. You must undo the changes made by that installation to continue. Do you
    Posted to Visual Studio 2008 (Forum) by willc on 10/6/2007
  • Re: e.Row.RowState = DataControlRowState.Edit only works on Alternating Rows?

    Here is code if anyone is still not getting this: Protected Sub GridView1_RowCreated( ByVal sender As Object , ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) _ Handles GridView1.RowCreated If e.Row.RowState = (DataControlRowState.Normal Xor DataControlRowState.Selected) OrElse _ e.Row.RowState = (DataControlRowState.Alternate Xor DataControlRowState.Selected) Then e.Row.BackColor = Drawing.Color.CadetBlue End If End Sub Notice the BitWise "XOr" operators. Will
    Posted to Data Presentation Controls (Forum) by willc on 9/7/2007
  • Re: custom web base page property

    Any work arounds for design-time Intellisense errors that compile correctly?
    Posted to Custom Server Controls (Forum) by willc on 5/7/2007
  • Re: custom web base page property

    I am having the same problem. I have a custom page type that I am setting in my web.config using the pages.pageBaseType. The custom page has additional properties that I can set and that are then displayed on the MasterPage . I can set this property in the CodeFile and it works correctly. If I set this property in the @Page declaration I get an error warning, it does not show up in intellisense, but it ends up displaying correctly in the MasterPage. If I create a codeblock on the page, it shows in
    Posted to Custom Server Controls (Forum) by willc on 4/27/2007
  • Re: web.config overrides settings in app.config? VS2005

    Scott Guthrie pointed me in the right direction on this one on his blog. You just need to use the full connectionString name from the DAL ex. "DAL.My.MySettings.XXXConnectionString" in your web.config. I tested it and it overrides the DAL connectionString as anticipated. Something else I am starting to look at is setting up these server-specific values (encrypted, of course) in the C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config, either localized to the application or not
    Posted to Configuration and Deployment (Forum) by willc on 9/6/2006
  • Re: How to set up an .mdf db?

    I recently re-installed visual studio 2005. Since that time I have not been able to connect to .mdf files or create them in the App_Data directory. I receive the "Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed." error. Anybody have any ideas as to what is causing this? Thanks
  • Intellisence Design-Time Issues

    I am creating a custom GridView control that will have few extra properties. At it's most basic it is: Public Class gridViewPlus : Inherits GridView 'custom code End Class When you put the custom control on an aspx page and it has template fields, intellisense generates error messages for conflicting controlIds between the EditItemTemplate and the ItemTemplate controls and xHtml warnings at designtime. I tried adding a custom wrapper templateField class to the new control namespace without any luck
    Posted to Custom Server Controls (Forum) by willc on 3/5/2006
Page 1 of 4 (36 items) 1 2 3 4 Next >