No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Re: 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 … | |
Re: [url]http://www.c-sharpcorner.com/UploadFile/yougerthen/810262008070218AM/8.aspx[/url] | |
Re: 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 … |
The End.