1
Answer

asp.net linkbutton masterpage's content access code behind

Photo of Mega Anaska

Mega Anaska

7y
130
1
Hi guys, can you help me I create link button in masterpage's content using visual studio 2015 I add event onclick, and create koding in code behind , but when I running my application and click that link button, and give breakpoint the code behind unreadable, what should i do ? I try in visual studio 2015 but no problem

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