Include files in dotnet aspx

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm converting a web application from traditional asp to dotnet. In our
report writer module, we make calls to a number of include files, in order
to set parameters for which report is due to be run.

Is there a way to call an include file from within an aspx module? If so,
how?

Thanks,

SC
 
Not really. You can't mix the older VBScript code with the VB.NET code. Probably the best thing to do is to convert the functions in that #include file into a Module. Of course, you'd have to convert the VBScript code into VB.NET (or whatever .Net language you choose to use)…

---------------------------

I'm converting a web application from traditional asp to dotnet. In our
report writer module, we make calls to a number of include files, in order
to set parameters for which report is due to be run.

Is there a way to call an include file from within an aspx module? If so,
how?

Thanks,

SC





[microsoft.public.dotnet.framework.aspnet]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top