Hello. I am having a hard time trying to publishing my site. Everything was working fine in my Laptop, but I after I published my site everything is failing. This is the error: </o>
Ramon, If you have .Net membership roles provider it will be best to follow what is posted on the KB article. https://support.discountasp.net/KB/a337/how-to-configure-aspnet-20-membershiproles-provider.aspx .Net membership roles provider is setup to look for 'LocalSQLServer'. So in your web.config file the line... <add name='LocalSqlServer' connectionString='Data Source=DBServerName;Integrated Security=false;Initial Catalog=DBName;User ID=DBLogin;Password=DBPassword' providerName='System.Data.SqlClient' /> Replace the DBServerName with your SQL db server addon, DBName with the database name that came with your addon, DBLogin and Password should be replaced with what came with your SQL addon. This is assuming that you order the SQL addon from your control panel.... If you don't want to use LocalSQLSever, simply type '<remove name='LocalSqlServer' />' in your web.config file under the <connectionStrings> properties and change the connection string name on your roles provider to what ever connection string name you will be using... connectionStringName='LocalSqlServer' Change LocalSQLServer to what you have the connection string name to be. rcp DiscountASP.NET www.DiscountASP.NET