Can´t find a way to get my ApplicationName. Found a static method to get and set app name but I am not sure how to use it.
Found a very simple way to retrieve my application name:
SqlMembershipProvider msmp = new SqlMembershipProvider();
string appName = msmp.ApplicationName.ToString();
;O)