Click here to Skip to main content
15,902,445 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi Guys,

how can i add new dlls and asp.net pages without recompiling the web project?.

For example
in this scenario:
project namespace MyProj.core
dll nel bin/references MyProj.Core.dll

namespace MyProj.Utils
{
public class MyUtils
{
public static string getString()
{
return "Hello world!!!";
}
}
}

this class compiles in a separated file called
Myproj.Utils.dll

can i include this file in bin folder and uses it like:

MyNewPage.aspx.cs
using Myproj.Utils;

namespace Myproj.Pages
{
public class MyNewPage : Page
{
Response.Write(MyUtils.getString());
}
}

thanks
Posted
Updated 17-Feb-10 5:28am
v2

AFAIK, you cannot refer to new dll without recompiling your project.
You can, however, change an aspx page.
 
Share this answer
 
Thanks for the response, had you seen the joomla component installation?, there's not nedd to recompile nothing, surely there's a light at the end,

thanks
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900