bungpeng Posted February 17, 2003 Posted February 17, 2003 How to access function in module from ASPX file? P/S: We can direct access it from .vb file Quote
*Gurus* Derek Stone Posted February 17, 2003 *Gurus* Posted February 17, 2003 The following will link the assembly containing your module to the ASP.NET page DLL as it's compiled: <%@ Assembly Name="MyAssembly" %> Quote Posting Guidelines
bungpeng Posted February 18, 2003 Author Posted February 18, 2003 What value of MyAssembly should I put? There is no error when I put the project name, but it still cannot call function in my module Sorry, I not really undertand... Quote
*Gurus* Derek Stone Posted February 18, 2003 *Gurus* Posted February 18, 2003 When you compile your project it should produce a DLL with a filename ending in "*.dll". Take whatever the name of the DLL is, without the extension and place that in the Name attribute, as shown above. Quote Posting Guidelines
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.