I've noticed some differences in config.web between asp+ alpha and asp.net
beta1. (from http://www.asptoday.com/articles/20001122.htm). are there
many other differences? where is 'A Preview of Active Server Pages+' no
longer valid?
For example, the code below on p187 of 'Preview ASP+' to set session
state:
<configuration>
<sessionstate
inproc="true"
usesqlserver="false"
cookieless="false"
timeout="20"
server="localhost"
port="42424"
/>
</configuration>
will now read in asp.net:
<configuration>
<sessionstate
mode="inproc"
cookieless="false"
timeout="20"
sqlconnectionstring="data source=127.0.0.1;user id=sa;password="
server="someserver.somewhere.com"
port="42424"
/>
</configuration>
any other differences?