Search

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

Matching Posts

  • Re: Access to the registry key 'Global' is denied - Custom Performance Monitoring

    Check out this blog post by BCL team http://blogs.msdn.com/bclteam/archive/2006/09/08/746900.aspx . Specially add Network Service to the permission list.
    Posted to Configuration and Deployment (Forum) by mehfuzh on 8/19/2008
    Filed under: performance counters ASP.NET2.0 load testing
  • Re: How to deploy MVC app to shared hosting?

    If *.mvc extension is not registered to the hosting , it will give 404 exception. The working way of hosting MVC apps in that case is to modify global.asax routing caluse in the following way. routes.Add(new Route("{controller}.mvc.aspx/{action}", new MvcRouteHandler()) { Defaults = new RouteValueDictionary (new{ controller = "YourController"} ) }); In this way all your controller request will end up in *.mvc.aspx, which is recognized by your hosting. And as the MVC dlls are copied
    Posted to ASP.NET MVC (Forum) by mehfuzh on 4/13/2008
    Filed under: ASP.NET MVC
  • Re: Nested applications and web.config problems?

    i guess the best solution is to move the common elements in child web.config to root, as any common handlers and custom block that is added on root config, will give a error in child for adding it twice.
    Posted to Configuration and Deployment (Forum) by mehfuzh on 2/16/2008
    Filed under: asp.net, IIS
  • Re: Unable to Connect to Server (databases)

    Just a quick question, are you sure about that Godaddy does not have an IP restriction, also did you check your firewall settings, so that it is not blocking the outbound port ? can you check with netstat ?
    Posted to Installation and Setup (Forum) by mehfuzh on 1/6/2008
    Filed under: connection string
  • Re: Delete Record Problem

    Ohh.. right After this Dim tags = From t In database.Tags _ Where t.TagID = New Guid(lvTags.DataKeys(e.ItemIndex).Value.ToString) database.Tags.Remove(tags) you have to add this Database.SubmitChanges() or less the Single list will be blank and throw as expcetion. :-), Note,that single should only one item, or less it will throw exception as well. Thanks,
    Posted to Visual Basic .NET (Forum) by mehfuzh on 12/4/2007
  • Re: Delete Record Problem

    Private Sub lv_ItemDeleting( ByVal sender As Object , ByVal e As ListViewDeleteEventArgs) Handles lv.ItemDeleting Dim database As New MyContextDataContext Dim tags = From t In database.Tags _ Where t.TagID = New Guid(lvTags.DataKeys(e.ItemIndex).Value.ToString) database.Tags.Remove(tags) End Sub Dim tags = From t In database.Tags _ Where t.TagID = New Guid(lvTags.DataKeys(e.ItemIndex).Value.ToString) Here the returned result is IEnumerable<Tag> and the following one takes tag object database
    Posted to Visual Basic .NET (Forum) by mehfuzh on 12/4/2007
    Filed under: LINQ
Page 1 of 1 (6 items)