How can I use " ProfileCommon" class in MyWebsiteCore.dll,Is That possible?

  • Thread starter Thread starter Osamede Zhang
  • Start date Start date
O

Osamede Zhang

You know ASP.NET automatically generates a class named Profile in the
Temporary ASP.NET Files directory, But I want to write this class by
myself,So I can use it in my class library,
What should I do?
Thanks for your read
 
Only the ASP.Net Web Site projects generate an automatic Profile class. A
lot of people find the ASP.Net Web Application Projects more versatile. The
problem is, they don't compile the Profile at runtime sicne the main
difference with the Web Application Project is that it compiles everything
at build time. There is a tool for the Web Application Project that will
enable you to automatically create a WebProfile class based upon the items
in the profile config. You could even put this in a completely seperate DLL
and consume it wherever you need to.
 
Back
Top