Articles Archive for October 2008
Asp.net, CSharp »
To generate XML-Schema – it easy with the use of <b>xmlTextReader</b>.
Here, I am try to retrieve xmlSchema with following code-snippet:
1. Create a Design Page
<%@ Page Language=”C#” AutoEventWireup=”true” CodeFile=”Default.aspx.cs” Inherits=”_Default” %>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
2. Write Code-Behind for implementation:
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head runat=”server”>
<title>Reading XML Document</title>
</head>
<body>
<form id=”form1″ runat=”server”>
<div id=”dvXML” runat=”server” visible=”false”>
<asp:TextBox id=”txtXML” runat=”server” />
</div>
<div>
<asp:Button ID=”btnXML” runat=”server” Text=”Read XML” onclick=”btnXML_Click” />
</div>
</form>
</body>
</html>
/* This Example is a part of different
* examples shown in Book:
* C#2005 Beginners: A Step Ahead
* Written by: Gaurav Arora
* Reach at : Gaurav Arora*/
#region Using Namespaces
using System;
using System.Configuration;
using System.Data;
using …
Technology News »
Window Azure : Again MicroSoft showed the strength
A great news for MicroSoft lovers, Window Azure – On Monday MicroSoft announced a new version of Windows that runs over the internet from inside Microsoft’s own data centers.
Dubbed Windows Azure, it’s less a replacement for the operating system that runs on one’s own PC than it is an alternative for developers, intended to let them write programs that live inside Microsoft’s data centers as opposed to on the servers of a given business.
Here is the speech of Microsoft’s chief software architect …
Technology News »
3D Shopping : A WindowShop by Amazon
I caught that news from one my friends who is crazy for online shopping. Amazon launches its WindowShop – A bunch of selection of goods by Amazon.
The tool was built by Amazon and runs entirely off its S3 storage service.
Everything is clear and movable at WindowShop. You can see each product there.
Earlier the same experience has been found at Cooliris .
Just visit to WindowShop .
To download the full-quality version, right-clickVideo and choose “save link as”.
For more details please visit : A new …
