Experience using gcServer=”true” to set garbage collector for .NET
Has someone used a configuration enabling the garbage collector optimized for multi-processor machines using Aspnet.config with :
Has someone used a configuration enabling the garbage collector optimized for multi-processor machines using Aspnet.config with :
I have created 2 endpoints for my WCF service.
I have a button control. On click of this button I need to add a Link Button dynamically. The Link Button needs an event handler. Hence the dynamic Link button is first added in the Page_Load and cleared and added again in the button click handler. Please read Dynamic Control’s Event Handler’s Working for understanding the business requirement for this.
I m working on ASP.NET MVC 4 application.I have a dashboard and my users groups will be based on Windows Domain
So I am using WIndows Authentication for authenticating users.
I created sample applications which uses custom authentication by overrides functions AuthorizeAttribute, ActionFilterAttribute . Is this a good approach ?
Possible Duplicate:
regex for URL including query string
I’ve wrote this little method to achieve the goal in the subj., however, is there more efficient (simpler) way of doing this? I hope this can help somebody who will search for this like I did. var fileName = new System.Text.StringBuilder(); fileName.Append("*Bad/ :, Filename,? "); // get rid of invalid chars while (fileName.ToString().IndexOfAny(System.IO.Path.GetInvalidFileNameChars()) > -1) … Read more
How many classes can you inherit from in .NET?
I have an existing ASP.NET website which I would like to painlessly add CMS functionality to. The site is a estate agent’s property website and is backed by a database etc. however some pages like ‘About Us’ etc. I would like the user to be able to edit using a simple CMS. I would also … Read more
I have an Asp.net Mvc application with razor views engine , in which i used a variable Session['user'] : when an user log on the application Session['user'] = login and in the logout this variable takes as value Null.
I need some advice regarding the use of a command line utility from a C#/ASP.NET web application.