2
Answers

How to find out each row in datagrid after paging in silverlight

Photo of nagaraju

nagaraju

13y
2.9k
1
Hi,

I generated one question paper with datagrid in silverlight. i done paging with datapager control. now i am displaying 5 questions per page. now i selected answer ie radiobutton for each question .now i want to find out which question is selected in that datagrid.can anybody please help me.


Thanks
P.Nagaraju


Answers (2)

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