Search results for query: *

  1. J

    Rowfilter

    i have the following code: filesData.ReadXml(Server.MapPath("users/" & m_User.ID.ToString) & "/myfiles.xml") filesData.Tables("file").DefaultView.RowFilter = "fileid <> '00000000'" dgdMyFiles.DataSource = filesData dgdMyFiles.DataBind() where filesData is a dataset and dgdMyFiles is a...
  2. J

    Download to client

    Thanks Thank you for such a quick response! That looks like it is exactly what i am after, i will have a look at it and then give it a go... Think i may use this as a starting point to what will hopefully be a steep learning curve... Thank you very much for all your help.
  3. J

    Download to client

    Hi, im a little stuck and not too sure where to look as i havnt been using .Net for that long. I am using Visual Studio 2003 and i am creating a webforms application. For part of it a user can click on a button in a datagrid and depending on the row i want them to be able to download a specific...
  4. J

    Insert into XML (modify)

    Obvious... Cheers... That last post makes it look horrifyingly easy and yet makes me feel a little retarded for not realising :-) Cheers for the help i will give it a shot.
  5. J

    Insert into XML (modify)

    Dataset the m_ID was a variable set earlier used to find the record i wanted to edit... however the dataset idea sounds a lot better.... How does it work?
  6. J

    Insert into XML (modify)

    Ive been reading from and xml file and ive also been able to add new data to it but im having trouble modifying the existing data. Below is the code im trying to use. Its not working and im sure its obvious as to why but im a little stuck... Any ideas? No errors are thrown so as far as i can see...
  7. J

    Xml to use schema?

    Hi guys, im having a very frustrated moment and im feeling very retarded so i could do with your help. Im currently creating a website using vb.net and one part of it involves reading data from an xml document and adding and editing elements. I have read that there are many ways to do this but i...
Back
Top