Hi,
My name is Allen Chen. It's my pleasure to work with you on this issue.
As to this problem, the general way we'll do is to edit the settings in the
web.config after publishing the site. It's easy to do so and we only have
to do that once.
If you want to create UI for the administrator to edit the web.config file
you can try the following code:
Configuration config =
WebConfigurationManager.OpenWebConfiguration(Context.Request.ApplicationPath
);
//Edit ConnectionStringsSection
ConnectionStringsSection css =
(ConnectionStringsSection)config.GetSection("connectionStrings");
if (css != null &&
!css.SectionInformation.IsProtected) {
//Here ADConnectionString is the connection string. It
may vary in your case.
css.ConnectionStrings["ADConnectionString"].ConnectionString =
@"LDAP://your connection string";
}
//Edit MembershipSection:
MembershipSection section =
(MembershipSection)config.GetSection("system.web/membership");
if (section != null &&
!section.SectionInformation.IsProtected)
{
//Here section.Providers[1] is
ActiveDirectoryMembershipProvider. It may vary in your case.
section.Providers[1].Parameters["attributeMapUsername"] =
"sAMAccountName";
}
config.Save();
If you have additional questions please feel free to ask.
Regards,
Allen Chen
Microsoft Online Support
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/en-us/subscriptions/aa948868.aspx#notifications.
Note: MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 2 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions. Issues of this
nature are best handled working with a dedicated Microsoft Support Engineer
by contacting Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/en-us/subscriptions/aa948874.aspx
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.