1
Answer

I want to use serial key validation in our project using C#

Photo of shrikant mule

shrikant mule

11y
1.3k
1
I want to use serial key validation in our project using C#
how can I?
I want to protect my application using serial key or password format while installing on system
and give 30 days trial period.
To give different user different keys

Thank you

Answers (1)

0
Photo of Pravin More
NA 2.6k 136.1k 13y
Hi Symesh,

Set in your connection string IP address of remote server. E.g.
"Data source=112.160.0.18; Database=dbname;User ID=urusername;password=****"
where 192.168.0.13 is your remote server IP and MyDb is your database name.
Also, make sure to configure your SQL Server Express to allow remote connections! Those are disabled by default after installation.

Thanks,
Pravin.
Accepted
2
Photo of Datta Kharad
NA 2.5k 40.9k 13y
Hi

 
   string connectionstring ="data source=[Servername];initial catalog=Northwind; integrated security=SSPI;persist security info=False; Trusted_Connection=Yes."

Where datasource will be computer name or IP Address, and initial catalog is the name of database.
       For Windows Aunthetication you can use either MyDbConn1 or MyDbConn2:-
In web.config file...

<connectionStrings>
<add name="MyDbConn1"
connectionString="Server=MyServer;Database=MyDb;Trusted_Connection=Yes;"/>
<add name="MyDbConn2"
connectionString="Initial Catalog=MyDb;Data Source=MyServer;Integrated Security=SSPI;"/>
</connectionStrings>

      // Retrieving connection string from Web.config.
 String connString = WebConfigurationManager.ConnectionStrings["MyDbConn1"].ToString();
  SqlConnection conn = new SqlConnection(connString);
  conn.Open();


Please mark as Accepted answer if your query resolved.  
0
Photo of Prabhu Raja
NA 4.7k 1.5m 13y