Expand my Community achievements bar.

XDP in ASP.NET page

Avatar

Level 3

I would like to developp in VB.NET a page able to handle an XDP format. I have choose XDP because after all I want to store my file as a big string

like XML. I was wondering if someone could help me to create this page or maybe give what class I need to have in order to do that.

I work on Visual Studio 2005.

Thanks for your help.

2 Replies

Avatar

Level 10

XDP is nothing more than an xml document. So you can manipulate the xdp as same as other xml files.

You want to post the XDP document to a asp.net page?

If so, you use

1. Request.Files[0] to get the posted file or

2. HttpPostedFile object to retrieve the file

then convert the binary content into an XML object and proceed with the manipulation

Nith

Avatar

Level 3

I didn't get your answer.

You speaking about the fact to post the form on the web site or to save the data.

My big problem right now is to be able to display this XDP file to my client after with only VS2005

I think it will be a piece of cake.

Thanks