I ve been tasked with a project that requires me to convert a quote for a set of products that is displayed online into a particular file format for import into a third party application. All of the information I need is stored in a database that I can easily access.
Unfortunately, I absolutely have to offer this as a web interface and they want it to be a natural extension of their current ASP.NET product.
Even more unfortunate is that I ve had no prior experience in ASP.NET and, as a result, I can t seem to phrase my question in a way that gets the desire result in search engines. I guess I m behind on the proper terminology.
What I d like to do is to take the data in the database and read it into objects that I ve created in C# that hold their particular necessary attributes. For instance:
The QUOTE class contains a list of ITEM attributes. The ITEM class contains a list of MODIFICATIONs.
I could then just loop over all the line items and output the necessary information to perform the task.
I m familiar with Ruby on Rails and how I can set up objects, work on them, and then reference them in the view, but I m completely lost in ASP.NET.
So, the short version is this:
What am I trying to do in terms of ASP.NET terminology so that I can research how to do it?
Is it even possible?