Show All Related Tags
Did you mean
XML (1,813 results), XML document (136 results), XML-Data (98 results), XML file (81 results), XML schema (42 results)more...
Show Fewer Related Tags
Did you mean
XML (1,813 results), XML document (136 results), XML-Data (98 results), XML file (81 results), XML schema (42 results), XML Query (20 results), XML Database (16 results), XML Web Service (15 results), XML parser (8 results), ebXML (7 results), Microsoft XML Parser (4 results), XUL (4 results), XML DTD (3 results), XML 1.0 (3 results), W3C XML Schema (2 results), cXML (1 results), XML protocol (1 results), XML Messaging (1 results)fewer...
Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- sort by:
- Relevance
- Date
- Popularity
- IIS 7.0 delivers
- As an IIS MVP with Microsoft, I thought I would begin to share some of the new features of IIS 7.0. by Steven Warren
- Blog posts 2008-07-08
- See how the Java API for XML Registries works
- Web application developers must deal with a number of distributed registries, each with its own API or protocol. Sometimes specifications overlap; this is the case with Electronic Business using Extensible Markup Language ebXML, eCo Framework, and Universal Description, Discovery, and Integration UDDI. The Java API for XML Registries JAXR aims...
- Blog posts 2008-04-30
- Create custom Visual Studio 2005 code snippets
- Visual Studio 2005's built-in code snippets are great, but you can extend the concept by creating custom code snippets to easily reuse common code blocks in your application. This tutorial walks you through the process of creating custom code snippets. Creating the file Code snippets are defined in...
- Blog posts 2008-04-18
- Parse XML with the StAX Java API
- Streaming API for XML StAX is an API that allows you to read and write XML documents in Java. StAX is a parser independent, pure Java API based on interfaces that can be implemented by multiple parsers. StAX was introduced in Java 6.0 and is considered superior to...
- Blog posts 2008-03-31
- Send XML documents online with SAAJ
- SOAP with Attachments API for Java SAAJ provides a standard way to send XML documents over the Internet from the Java platform. SAAJ enables you to produce and consume messages conforming to the SOAP 1.1 and 1.2 specifications and SOAP with Attachments note. When you choose to...
- Blog posts 2008-03-20
- How do I... Determine the distance between ZIP codes using C#?
- Calculating the distance between ZIP codes has become a common feature in search engines. For instance, if you're searching for restaurants, a Web site will often allow you to enter a ZIP code and display all of the restaurants within X miles of that ZIP code. Here is one way...
- Blog posts 2008-03-17
- Build directory structures using SQL Server 2005
- If you ever work with directory structures on the filing system, you know how challenging it can be to traverse through folders to find specific files. If you store this type of information structure in the database, you are even more aware of what it takes to retrieve the data....
- Blog posts 2008-03-17
- Access XML data using LINQ to XML
- I have covered the basics about .NET Language-Integrated Query LINQ and provided information on working with a SQL Server backend via LINQ. This article focuses on what I think is one of the more exciting aspects of the LINQ technology: working with XML. LINQ to XML offers a cleaner approach...
- Blog posts 2008-01-22
- Build Web applications once, run everywhere with OpenLaszlo
- Developers face many architecture choices when building Web applications. The target client is often a key factor when deciding which development platform to use. OpenLaszlo can help you clear this hurdle by delivering a runtime that runs on all browsers. OpenLaszlo provides a platform for building rich Internet applications that...
- Blog posts 2008-01-17
- Intel releases XML software suite to speed up XML processing
- Intel has announced its XML software suite, which includes libraries for Java and C++ to improve the performance of several common XML functions, such as parsing, schema validation, and language transformation. An excerpt from Network Computing: Although Intel recommends that customers use hardware based its...
- Blog posts 2007-12-04
- Using OpenOffice to view XML file in Internet Explorer
- Hi everyone,We need to be able to read reports which are generated from our client's website. The report is generated on an aspx page in Excel XML format and by default it opens in Excel 2000 which is on our PC within an IE browser window to view the report....
- Discussion threads 2007-11-07
- Need help with rss XML feeds
- Need help with rss feeds i would like to creat rss feed to this site http://www.movingcompanies.co.il how do we do it please any tip will be big help, i try creating it using other rss provider and it's not working i want this sit to have is on rss feeds...
- Discussion threads 2007-11-05
- Font Size in XLS Style Sheet
- I'm an XML newbie, and need some assistance with setting the font size in my xsl style sheet. When I add the tag to my style sheet, the size and face will change on the header text in the document, but will not change on any of my...
- Discussion threads 2007-10-25
- XML meta data is now supported in Aspose.Pdf for .NET
- Aspose.Pdf is a .Net component for writing Pdf documents without using Adobe Acrobat. It supports converting HTML, XSL-FO & Microsoft Word documents to PDF and you can also create PDF by API, XML templates or XSL-FO files. Other supported features include XML meta data, form field creation, image formats &...
- Discussion threads 2007-10-19
- Export VB/C sharp comments to XML
- Apologies in advance for these naive multi-tiered questions...I need to know like yesterday:(1) Is there an easy way to programmatically extract comments from VB or C# code into XML files?(2) How do I construct Word 2003/2007 from XML files? (3) Can I use XMLSpy to extract VB/C# comments to XML...
- Discussion threads 2007-10-18
- Dynamic XML with the ASP.NET XmlTextWriter() object
- kunalsoftware developer
- Discussion threads 2007-10-17
- Populate Web forms with JSP and XML
- One of the coolest thingIm Searching for such a cool programmatic approach to parse xml document.Nice article, simple to understand the concept...and one more need for meI need to parse a xml file and display it in jsp and edit a particular element and how to save it as xml...
- Discussion threads 2007-10-17
- Generating XML from XSD in VB.NET
- I have XSD file and I am trying to generate XML file based of off the XSD. Does anyome have code sample how this done? What I have is the xml stored in table and I am kind of combining xml from each record in the table into one huge...
- Discussion threads 2007-10-12
- SolutionBase: Working with migration rule files in the User State Migration Tool
- The User State Migration Tool is designed to follow instructions that are contained in migration rule files. Since these files are all in XML format, you have the option of modifying any or all of the default migration rule files or creating a custom migration rule file. In this article,...
- Technical articles 2007-10-08
- example of Inserting and Retrieving data from xml file
- This is an example of Inserting and Retrieving data from xml file. http://www.hanusoftware.comprivate void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here if(!IsPostBack) { BindGrid; } } private void BindGrid { ds = new DataSet; try { ds.ReadXml(@"c:inetpubwwwrootWebApplication10XMLFile1.xml"); DataGrid1.DataSource = ds; DataGrid1.DataBind; } catchException ex { throw ex; } } private void Button1_Click(object sender, System.EventArgs e) { ds = new DataSet; try { ds.ReadXml(@"c:inetpubwwwrootWebApplication10XMLFile1.xml"); DataRow row = ds.Tables[0].NewRow; row["name"]=txtName.Text; row["fathersname"]=txtFName.Text; row["address"]=txtAddress.Text; ds.Tables[0].Rows.Addrow; ds.WriteXml(@"c:inetpubwwwrootWebApplication10XMLFile1.xml"); txtAddress.Text=""; txtFName.Text=""; txtName.Text =""; BindGrid; } catchException ex { throw ex; }[url=http://www.hanusoftware.com]Software Development...
- Discussion threads 2007-09-26
- << Previous
- page 1 of 91
- Next >>
Content Types
- Blog posts (35 results)
- Book chapters (19 results)
- Case studies (23 results)
- Discussion threads (127 results)
- Download resources (29 results)
- Image galleries (1 results)
- Q&A (14 results)
- Software downloads (803 results)
- Technical articles (321 results)
- Training (2 results)
- Webcasts (50 results)
- White papers (389 results)
Refining Tags
- Software/Web Development (1,276 results)
- Web Development (1,266 results)
- Microsoft Windows (662 results)
- Software (562 results)
- Operating Systems (282 results)
- Enterprise Software (223 results)
- Software Development (167 results)
- Internet (157 results)
- Apple Macintosh (147 results)
- XML Document (136 results)
- Microsoft Corp. (123 results)
- Data Management (118 results)
- Microsoft Office (117 results)
- Databases (114 results)
- Web (107 results)
- Office Suites (106 results)
- Hardware (97 results)
- Programming Languages (88 results)
- Scripting Languages (88 results)
- Productivity (83 results)
- Programming (82 results)
- XSLT (76 results)
- XML File (75 results)
- XML-Data (71 results)
- Java (67 results)
- .Net (61 results)
- Marketing (57 results)
- Middleware (53 results)
- HTML (53 results)
- Microsoft Excel (53 results)
- Development Tools (50 results)
- RSS (46 results)
- RDF (44 results)
- Microsoft Word (43 results)
- Channel Management (43 results)
- Database (43 results)
- Storage (42 results)
- XML Schema (41 results)
- Web Services (40 results)
- Document Object Model (40 results)
- Xhtml (40 results)
- Microsoft .NET (40 results)
- XSL (38 results)
- Server (38 results)
- Web Service (37 results)
- IBM DB2 (36 results)
- Management (35 results)
- SQL (35 results)
- Oracle Corp. (34 results)
- Word Processors (33 results)
