ASP.NET Deployment

PROKA

Junior Contributor
Joined
Sep 3, 2003
Messages
249
Location
Bucharest
I am almost ALWAYS having trouble with deployment in asp.net.
The page works perfectly on my computer, but when I give the page to a friend, lots of errors, also when I try to put it on a remote server ... like europe.webmatrixhosting ...

Some tips and tricks !??! Some good articles on asp.net deployment ?


Example : http://proka2.europe.webmatrixhosting.net/SendEmail.aspx
 
Last edited:
If you had bothered to read the entire error you'd realize the problem.

System.Windows.Forms.Form.ShowDialog(IWin32Window owner) +2127
System.Windows.Forms.Form.ShowDialog() +7
Mabry.Core.MabryLicenseManager.Validate(Type type, Object instance) +817

The Mabry component is attempting to show a window, which obviously doesn't even make sense for an ASP.NET application.
 
Back
Top