I am very new to windows software development. I have created a web site using VS Express 2013. It reads an xml file, connects to 4 different databases, it fetches data from these databases according to the xml file and stores the new data on a new database and displays on the screen.
The problem is: reading the data from the xml and databases must happen at the background. Users should only see the output. So I have decided to create a console application and use windows task scheduler which will call the console application every hour.
My question is:
Can I use the same code (asp.net web) on the c# console application without making too much changes?
At the moment I am downloading visual studio 2013 and I have got no idea what to do.