Hello again,
I thought I would notify about my progresses(or better, lack of

).
I read through both replies which were interesting, I enabled
SQLBrowser service and added a TCP/IP protocol.
This is my connection string so far:
Data Source=LUCALAPTOP\SQLEXPRESS;Initial Catalog=BlogThis;Integrated
Security=True
I should probably be using LOCALHOST instead of LUCALAPTOP
\SQLEXPRESS ?
I also followed the advice of googling fot membership examples, so
this is my membership section below system.web node:
<membership defaultProvider="SqlProvider" userIsOnlineTimeWindow="15">
<providers>
<clear />
<add
name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="BlogThisConnectionString"
applicationName="BlogThis"
enablePasswordRetrieval="true"
enablePasswordReset="true"
requiresQuestionAndAnswer="true"
requiresUniqueEmail="true"
passwordFormat="Hashed" />
</providers>
</membership>
I noticed, however, that in the example an "authorization" node is
placed just before the membership one,
maybe I should add that as well? The following URL, however, doesn't
seem to hint at that as important:
http://msdn2.microsoft.com/en-us/library/6e9y4s5t.aspx
This is where I adapted my own membership node from.
I'm unsure about Juan advice actually, cause I am using a default
setup with an administrative user account, so I
really wonder if there's anything I am missing.
As you may have understood by my prologue, it doesn't however work,
so... what am I doing wrong?
Thank you for your time helping me,
Andrew