baklap
baklap

Reputation: 2173

how to run asp.net dlls?

I've got 4 ASP.NET DLLs and the source.

When i compile it it says its not able to run it because it's a class library. I know, but how should I run those files. I haven't got any aspx files or anything, just the 4 DLL's.

Upvotes: 1

Views: 1337

Answers (2)

John Saunders
John Saunders

Reputation: 161821

You don't run an ASP.NET application like you do a normal program. It has to be hosted on a web server (either IIS, or the built-in server in Visual Studio), and then accessed by a browser, through a URL.

Upvotes: 1

David
David

Reputation: 219037

What do these DLLs do that needs to be run? Do you just need to quickly debug/test some functionality in them or something? A quick way to do that would be to just write a simple little console app and reference the DLLs in it.

Upvotes: 2

Related Questions