Monday, May 13, 2013

Create an XML file based on an XSD schema

I have an XSD file pre defined as shown below: <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:element name="Synchro"> <xs:complexType> <xs:sequence> <xs:element name="Titles" minOccurs="0"> <xs:complexType> <xs:sequence maxOccurs="unbounded"> <xs:element name="Name" type="xs:string"/> </xs:sequence> </xs:complexType> </xs:element> ...

Searching XML file using ASP.NET and C#

I have found how to search a particular element from the XML file. The XML file is: <?xml version="1.0" encoding="ISO-8859-1" ?> <company> <employee id="109"> <fname>John</fname> <lname>Graph</lname> <age>28</age> </employee> <employee id="110"> <fname>Anna</fname> <lname>Laoe</lname> <age>32</age> </employee> <employee id="111"> <fname>Ashley</fname> <lname>Kazzl</lname> <age>34</age> </employee> <employee...

Creating XML Files using C#

When you want to export data, you can choose formats such as XML or csv for the data files. The XML format is more widely used for its flexibility and is desirable by many systems to be able to process the data. This article explains how to create xml files from C# classes. Situation: Where would you use it: - When you have to export data from one system to another system...

Update the database on browser close?

The only way is by using AJAX. Here's an example. ////////////////////////////////////////////////////////////////////////// // Page1.aspx ////////////////////////////////////////////////////////////////////////// <script type="text/javascript"> <!-- var g_databaseRecordKey = '<%= DatabaseRecordKey %>'; var g_isPostBack = false; function callAjax(webUrl, queryString) {  var xmlHttpObject = null;  try  {   // Firefox, Opera 8.0+, Safari...   xmlHttpObject = new XMLHttpRequest();  }  catch(ex)  {   //...

Detect browser closing through clicks on the [X] button

I had been searching through the internet to find out how to control this issue: You have a web application where you validate every user that logs in, if somebody tries to log in from another place with the same user name, he should be denied access because the user is at the system right at that moment. Well, the way I'm controlling this, is using a table where I...

Page 1 of 41234Next