R
Rathtap
I want to write a C# application (lets call it Generator) that will
receive an argument(patient account number) and dynamically generate a
series of linked HTML files (claim information, payments, denials etc)
by querying a database based on the argument. This Generator can be
called from an aspx web page, a Cold Fusion page as well as from a
windows application.
1. Does this C# app have to be a console application to receive
arguments?
2. Is there an easy way to create the HTML file without having to
learn all the HTML syntax?
3. I think it would have been easy enough if it were all within the
ASP.net project itself but because this app needs to be called by a
number of different applications(which are not even .Net apps) I
assume I need a stand-alone generator. Moreover one calling
application is an off-the-shelf third-party product which prevents me
from modifying their code to include the Generator.
This third-party app is however capable of shelling.
4. I assume the calling application should also provide the file name
to be assigned to this generated HTML file because the Generator will
have no way of relaying that information back.
5. Anything else I should be thinking of??
Thanks.
receive an argument(patient account number) and dynamically generate a
series of linked HTML files (claim information, payments, denials etc)
by querying a database based on the argument. This Generator can be
called from an aspx web page, a Cold Fusion page as well as from a
windows application.
1. Does this C# app have to be a console application to receive
arguments?
2. Is there an easy way to create the HTML file without having to
learn all the HTML syntax?
3. I think it would have been easy enough if it were all within the
ASP.net project itself but because this app needs to be called by a
number of different applications(which are not even .Net apps) I
assume I need a stand-alone generator. Moreover one calling
application is an off-the-shelf third-party product which prevents me
from modifying their code to include the Generator.
This third-party app is however capable of shelling.
4. I assume the calling application should also provide the file name
to be assigned to this generated HTML file because the Generator will
have no way of relaying that information back.
5. Anything else I should be thinking of??
Thanks.