HI,
This is probably a very basic question, but I'd like to get a confirmation from someone more experienced.
I'm using Visual Web Developer 2010 right now, developing, testing and debugging some web projects, using VWD's built-in web server; along with SQL server 2008 express on the same computer.
My question is: will I be able to test & debug everything in VWD, just the same as I deploy the code + DB onto a "real" web server? IS there any limitation that I can not do in VWD, where can do on a real server (e.g. WIndows 2008+ IIS 7 + SQL server 2008)?
F.G.: Part of the reason I'm asking is: in an app, there is code like this:
HttpContext.Current.Session["mySessionVar1"] ...
or:
if (this.User.Identity.IsAuthenticated)
{ .....
or:
this.Session["..."]...
Can these code be executed just like on a web server?
Thanks,
CLaudia