Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx thread: differences between asp+ and asp.net


Message #1 by craigw@w... on Mon, 27 Nov 2000 10:26:40 -0000
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?


  Return to Index