IIS has no such functionality by default.
It sounds like you are running some additional software on the server which
does this, so unfortunately you will have to figure out what software you've
installed that does this, which one to reconfigure, and how to do it
correctly.
--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Robert Smith" <RobertSmith.TakeThisOut@discussions.microsoft.com> wrote in message
news:FF334391-D798-415A-936C-B3D4E3463C6D@microsoft.com...
Hello,
Each time I save my code behind file the text gets compressed and all
white space is removed and lines become joined together and thus it doesn't
work properly. the file looks like the code below
If I try to re-format it goes back to how it was before when I save. Any
ideas how I get it it to stop doing this. I'm using vb.net studio beta 2 on
win 2000.
Regards
Robert
Sub Page_Load(Src As Object, e As EventArgs) Dim myConnection As
SqlConnection
Dim myCommand As SqlDataAdapter ' Create a connection to the '"pubs" SQL
database located on the ' local computer. myConnection = new
SqlConnection("server=localhost;uid=sa;pwd=;" _ & "database=pubs") ' Connect
to
the SQL database using a SQL SELECT query to get all the data from the
'"Authors" table. myCommand = new SqlDataAdapter("SELECT * FROM Authors", _
myConnection) ' Create and fill a DataSet. Dim ds As DataSet = new DataSet()