Join Date: February 2009
Location: India ( chennai )
Posts: 9
asp.net web application
how to create a web applcation using xml to fetch data's from database in .net framework.It must include insert ,delete,update options and the page must refresh after each operation.please help me with an examlple.................
benaya
Posted on Mar 1, 2009
Join Date: June 2007
Location: India ( Chennai )
Posts: 90
RE : asp.net web application
Hi, First you create one webpage which will display records in xml format.
Ex: Run a select statment in the webpage and build xml format. which will have this format <countries> <country> <text>India</text> <value>01</value> </country> <country> <text>China</text> <value>02</value> </country> <country> <text>USA</text> <value>03</value> </country> <country> <text>Germany</text> <value>04</value> </country> </countries>