Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #55.0K
Ranked #4K
~802 People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for 15389049

1. After the selection made in the Datagrid, u convert the gridvalues in Xml and then pass in to one Stored procedure Ex : ================= [code] string strXml = "<ROWS>"; foreach (GridViewRow gvRC in GridView1.Rows) { strXml += "<ROW><CheckBoxVal>" + gvRC.Cells["CheckBoxVal"].Text +"</CheckBoxVal>"; strXml += "<InsertValue>" + gvRC.Cells["InsertValue"].Text; +"</InsertValue></ROW>"; } strXml …

Member Avatar for 15389049
1
176
Member Avatar for vkkreddy
Member Avatar for sathishkumar.j
0
567
Member Avatar for facadie

1.Save ur test file in to the local hard disk whether d: or e: 2.Using this code and execute in the Sql server 2005 create table #testDate(myDate varchar(50),MyNo int) Bulk insert #testDate from 'd:\testdate.txt' WITH ( FIELDTERMINATOR =',', ROWTERMINATOR ='\n' ) select substring(mydate,0,11) MyDate,myno from #testdate 3. Now u can …

Member Avatar for sathishkumar.j
0
59

The End.