asp.net profiles - ProfileCommon - where is it? -


i've added web config:

  <profile enabled="true" >    <properties >      <add name="gender" type="string"/>     <add name="age" type="int32"/>   </properties>    <providers>     <clear/>     <add name="aspnetsqlprofileprovider" type="system.web.profile.sqlprofileprovider" connectionstringname="applicationservices" applicationname="/"/>   </providers> </profile> 

though, if try use profilecommon class, doesn't find it. shouldn't have been generated when uilt project?

using system.web.profile; 

did import namespace?


Comments

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -