What I would like to do is allow the user to upload a specific type of XML file(that has been retrieved from an Entrez Database), then in the backend analyze this file and pull specific information(I can do this in winforms so I know how to do it), but I
am confused as to how to send the file to the backend to do the work, then send my results back to the web form for the user.
so in order
1) User sends XML file to backend
2) Backend performs task on file - goes through XML and pulls IDS(I have the code that does this already)
3) Backend sends list of Ids to user(populates listbox on webform).
4) User clicks item in listbox, which sends the Selected ID back to the backend
5) Backend uses the ID to look through the data and pull the required information(I am working on the code for this now).
6) Data is sent back to fields on the webform
So How would I go about building a backend to do the analysis(I know what cod ...
Go to the complete details ...