| Author: Kumar Velu 04 Aug 2008 | Member Level: Diamond | Rating: Points: 3 |
hi,
Refer this link: http://forum.qsh.eu/Default.aspx?g=posts&t=83
And make sure whether you have disabled Enable cache and Enable kernel cache in Output Caching Settings for your web site.
Regards Kumar
|
| Author: Sabu C Alex 20 Aug 2008 | Member Level: Gold | Rating: Points: 6 |
hai gowri
this is a sample xml file
<?xml version="1.0" encoding="UTF-8"?> <NewDataSet> <Table> <datasource>SqlClient</datasource> <database>Pubs</database> <password>sa</password> <username>sa</username> </Table> </NewDataSet>
this is the functio to update ur xml file
Public Sub EditXmlFile() Dim doc As XmlDocument = New XmlDocument() doc.Load("FTP Location") Dim xmlNde As XmlNode = doc.DocumentElement.SelectSingleNode("Table") Dim databaseNode As XmlNode = xmlNde.SelectSingleNode("database") databaseNode.InnerText = "Pubs" doc.Save("FTP Location") End Sub
hope this will help you. Sabu
|