Friday, January 18, 2013

கம்ப்யூட்டரால் கண் வலியா?

  கம்ப்யூட்டரால் கண் வலியா? கம்ப்யூட்டரால் கண் வலியா?  டிவென்டி-20 ரூல்சை ஃபாலோ பண்ணுங்க கடந்த 11ம் தேதி உலக பார்வை தினமாக கடைபிடிக்கப்பட்டது. முன்பெல்லாம் 40 வயதை தாண்டியவர்கள்தான் மூக்கு கண்ணாடி அணிவார்கள். ஆனால், தற்போது 2ம் வகுப்பு படிக்கும் மாணவன் கூட மூக்கு கண்ணாடி அணிய வேண்டிய நிலை ஏற்படுகிறது. இதற்கு, அதிக நேரம் கம்ப்யூட்டர் பார்ப்பது, உணவுப்பழக்கமே காரணம் என்கிறார் அமெரிக்கன் ஐ கேர் சென்டர் டாக்டர் டி.பி.பிரகாஷ்.   கண் மருத்துவ பரிசோதனையில் தற்போது வந்துள்ள நவீன தொழில்நுட்ப வசதிகள் குறித்தும், கண் பார்வை...

Thursday, January 17, 2013

Arowing Social Networking ScreenShots

 My works-Arowing Social Networking &nb...

Wednesday, January 9, 2013

Insert XML data into SQL Server 2008

Insert XML data into SQL Server 2008: protected void Button1_Click(object sender, EventArgs e) { string EmpCode = null; string City = null; string State = null; string Country = null; string str = null; SqlConnection con = new SqlConnection("Data Source=localhost; Initial Catalog=Test;Integrated Security=True"); XmlDocument document = new XmlDocument(); document.Load("E:\\Santosh\\EmpAddress.xml"); XmlNodeList xmlNodeList = document.SelectNodes("EmpAddress/Address");...

Export DataSet to XML File

Export DataSet to XML File : create xml file from a dataset This code snippet show how to export DataSet to xml file.Here we have taken data from database and fill dataset.We have taken a aspx page and a button there,after clicking the button a xml file will be created at specified location. public void CreateXml() { DataSet ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter("usp_GetAddressDetails",con); da.Fill(ds); if (ds.Tables[0].Rows.Count > 0) { GridView1.DataSource = ds; ...