am installing my web app via installshield. from which am calling custom dll prepared with C# to modify the attributes in web.config file.
But the thing is after successful deploying my content to inetpub the web.config file looks bit ugly and distractive.
so can we run something like CTRL+K+D like we do in visual studio to make it looks well formatted?
i mean via programmatically formatting my web.config file.
Regards,
Pavan
You can use XmlTextWriter.Formatting property when writing the config. Please take a look at this post: Formatting XML in C#
This may be what you need.