Hi, I am taking over the maintenance of a website. Virtually no documentation. I hope that this kind of question is "ok" here ...
Right now, I am trying to locate/view the database but I can't find it.
This is the only connectionString in web.config:
<connectionStrings>
<add connectionString="Data Source=YPOC\SQLEXPRESS;Database=Marco;User ID=yyy;Password=xxx;" name="DefaultConnectionString" />
</connectionStrings>
QUESTIONS:
Based on this connectionString, Marco is not a database file such as Marco.mdf, right?
Does this mean that the database "Marco" resides on an SQL Server instance called SQLEXPRESS on the server YPOC?
*****
Again, I don't have a prior web developer to ask, I am in this cold. How do I go about finding the server address to put in the connectionString? The website is being hosted on a cloud server and it appears that SQL Server has been installed. Even though it is an unmanaged site (meaning web hoster doesn't manage it, they just provide the web server space), would the web hoster know this info?
Another way of asking the same question is: how do I connect from dev computer thru VS or SQL SMS?
*****
In the App_Data folder, I found ASPNETDB.MDF ... in Server Explorer, I try to connect to view the tables, but I get an error message:
"...cannot open because it is version 661. This server supports version 655 and earlier"
I did some research and it appears that version 661 means that it needs SQL Server 2008 R2 ... but I have that installed already ...

*****
I'm used to a shared hosting environment where the SQL Server DB is set up and it's easy to connect. Here, it is on a dedicated cloud server (unmanaged) and I'm been thrust upon new territory where I can't even find the database ... ;-(
Any help is greatly appreciated ...
- nano