- 
            
            
as seen on Stack Overflow
            - Search for 'Stack Overflow' 
            
How can I "clear" the vendor defined <controls> in my child app's web.config?  
Parent Web Config.
<system.web>
    <pages>
        <controls>
             <!-- START: Vendor Custom Control -->
             <add tagPrefix="asp" namespace="VENDOR.Web.UI.Base" assembly="System…
            >>> More
            
         
    
        - 
            
            
as seen on ASP.net Weblogs
            - Search for 'ASP.net Weblogs' 
            
   Configuring form authentication is a straight forward task in SharePoint. Mostly public facing websites built on SharePoint requires form based authentication. Recently, one of the WCM implementation where I was included in the project team required registration system. Any internet user can…
            >>> More
            
         
    
        - 
            
            
as seen on Server Fault
            - Search for 'Server Fault' 
            
Hi,
I've been given a problem to fix, and I initially thought of .htaccess files, except for one thing, I quickly realized it's an IIS server.  Is it possible to allow a webmaster the ability to modify the virtual directories using web.config files in the same way you can using .htaccess files? …
            >>> More
            
         
    
        - 
            
            
as seen on Stack Overflow
            - Search for 'Stack Overflow' 
            
I have SharePoint 2010 installed on a Windows Server 2008 R2 machine which is also hosting SQL Sever 2008 R2.  I am attempting to deploy a solution that includes web parts in the 2010 environment that is working fine in MOSS 2007.
The Web Part feature has a feature receiver that updates the web.config…
            >>> More
            
         
    
        - 
            
            
as seen on Stack Overflow
            - Search for 'Stack Overflow' 
            
Hi everybody,
I am encrypting web.config file. 
My code is below.
Configuration config = WebConfigurationManager.OpenWebConfiguration("~");
ConfigurationSection section = config.GetSection("connectionStrings");
if (!section.SectionInformation.IsProtected)
{
    section.SectionInformation.ProtectSection("RSAProtectedConfigurationProvider");
…
            >>> More