question new at VB

  • Thread starter Thread starter Luís Serpa
  • Start date Start date
L

Luís Serpa

hi

i am doing a web project with vb .net
but i have lots of procedures (calc)
how can i link other modules files with my main
Codebehind="webagestsite.aspx.vb"

example

webagestsite.aspx.vb
modulo 1
modulo 2
modulo 3
modulo (x)

and my webag...... can call function or procedure's on the modulo(x) and the
other way around

thank's

best

LSerpa
 
You should be able to write those functions into classes in individual
class files, or into module files. Then add those files or reference them
in your web application project. The functions would then all be accessible
from within the main CodeBehind .vb file.

Let me know if you'd like further instructions.

Steven Bras, MCSD
Microsoft Developer Support/Data Access Technologies

This posting is provided "AS IS" with no warranties, and confers no rights.

Microsoft Security Announcement: Have you installed the patch for Microsoft
Security Bulletin MS03-026?  If not Microsoft strongly advises you to
review the information at the following link regarding Microsoft Security
Bulletin MS03-026
http://www.microsoft.com/security/security_bulletins/ms03-026.asp and/or to
visit Windows Update at http://windowsupdate.microsoft.com to install the
patch. Running the SCAN program from the Windows Update site will help to
insure you are current with all security patches, not just MS03-026.
 
Back
Top