Search

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

Matching Posts

  • asp.net mvc vs/and asp.net webforms

    Hello, I've been developing for about 6 years particularly with asp.net, and Visual Studio. I have been asked to take a architect role among a small team, for a long term project. my question is : If we had one solution based on asp.net : Would it be good to combine different patterns, frameworks in the same solution? For example, use WebForms technology for developing simple CRUD Web Forms, on the other hand use asp.net MVC for modules which require light UI's and Highly testable, decoupled
    Posted to Architecture (Forum) by formationusa on 12/8/2009
    Filed under: MVC, .net 2.0, MVP Pattern, application state management, Model View Controller, MVP, ASP.NET 3.5, Web Forms, asp .NET 2.0, Model-View-Presenter Application_Start, .net2.0, .net 3.5 webservice service xml, web site, Application Architecture, "Application Architecture", asp .net 3.0, as.net 3.5
  • Re: asp.net mvc vs/and asp.net webforms

    Hi Kris, Thanks for answering so promptly. for simple CRUD, we do have a lot of options. What I wanted to hear was the second part :) one webforms project and MVC project, and exactly both connecting to the same service layer. I'm about to suggest this option to a client, in order to avoid using asp.net MVC for everything. I will check out Dynamic Data thanks a lot!
    Posted to Architecture (Forum) by formationusa on 12/8/2009
  • Re: Server Error in '/' Application

    Hello Richard, As I read my reply, It confused me. In fact, I meant, for testing purposes, please set debug to "true". This should throw the actual exceptions. setting customerrors mode to "Off" and debug to "true definitely should work. Otherwise, yes, the issue is other than this one. Good luck on this issue.
  • Re: System.Security.SecurityException: Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.

    A month later :) I just came across this same problem. the solution I found from one blog post, is setting Trust level to full for the application. adding this to the web.config under system.web : <trust level="Full" /> just thought it might help, even though I just went through the error yesterday, and solved it today :) Regards,
    Posted to Security (Forum) by formationusa on 6/14/2009
  • Re: Server Error in '/' Application

    Hello there, it's a very common issue. normally, like pointed out, the custom errors set to off should solve the issue. Another parameter to check also, is <compilation debug="true" /> it might help too, unless it's set to false. the debug=true should be switched off in a production envirnment, turned on only on particular situations. I wonder if this could help. I just get this yesterday, and hundreds of times when I forget to set customerrors to "Off" during testing
    Posted to Configuration and Deployment (Forum) by formationusa on 6/14/2009
    Filed under: "asp.net" "web application" "asp.net deployment" "Application Configuration
  • Re: Exception Details: System.Security.SecurityException: System.Security.Permissions.SecurityPermission

    Hello there, .Try and see if this helps, add this element to the web.config under <System.Web> like this <trust level="Full" /> I had a similar error for corss domain execution of code. Hope it helps. Regards,
    Posted to Security (Forum) by formationusa on 6/14/2009
  • Re: Login Fails After copied to IIS

    nice guru_sarkar , I forgot about that link, I even have a reply thanking for that post. it took me two days to figure that out before.
    Posted to Security (Forum) by formationusa on 8/20/2008
  • Re: Login Fails After copied to IIS

    The login components are not dependent on IIS. if you have asp.net 2.0 selected for the website or virtual folder in IIS, It should work fine. It may be more a problem with the application name or other configuration issues.
    Posted to Security (Forum) by formationusa on 8/20/2008
  • Re: drop down list in edit item template

    you're welcome, glad you got it to work. Eval("fieldname") is helper function, which is executed in the databound event of the gridview, to obtain values from each line, and associate them with control. example: <asp:label runat="server" id="lblName" Text='<%# Eval("Name") %>' /> Regards,
    Posted to Data Presentation Controls (Forum) by formationusa on 1/15/2008
    Filed under: Eval
  • Re: drop down list in edit item template

    < asp : TemplateField HeaderText ="Country" SortExpression ="CountryDescription"> < EditItemTemplate > < asp : DropDownList ID ="DropDownList1" runat ="server" SelectedValue =' <%# Bind("CountryKey") %> ' DataSourceID ="sdsCountry" DataTextField ="CountryDescription" DataValueField ="CountryKey"> </ asp : DropDownList > </ EditItemTemplate > < FooterTemplate > < asp
    Posted to Data Presentation Controls (Forum) by formationusa on 1/11/2008
    Filed under: ASP .net ... c# ... javascript
Page 1 of 5 (50 items) 1 2 3 4 5 Next >