[RESOLVED] need some advice
I'm trying to figure out how best to go about doing something im not familar with.
I've got a web based program that creates a csv file. That file needs to be opened, its data analysed, and rewritten into a differint format *.txt. Finally the new file needs to be imported into another web program.
Right now I have a visual basic 2008 app that handles doing this, but im thinking a better answer is pushing that vb app into a web page. What I dont know, is what language is used to code something like that.
Would greatly appreciate some advice.
Re: [RESOLVED] need some advice
ASP.NET (the web application) is just the platform, you can use any .NET language in the codebehind to perform whatever logic or processing you need. If you can, you may want to do this in the same application where the CSV is being generated so that the logic stays together.
Re: [RESOLVED] need some advice
I believe the express version of web developer (ASP.NET) is available as a download from Microsoft just like VB.NET is.
Re: [RESOLVED] need some advice
Thanks Hack, but work got me VB studio 2008 so im set ;)
Re: [RESOLVED] need some advice
And don't forget about ADO.NET if you are going to be working with databases.