>>650
ありゃ。 じゃあこれはどう!?

-----------DLL.cs-------------
public void trymefunc(HttpApplication app)
{
  string foo = app.Request.MapPath("~/b.xml");

  XmlDocument myDoc = new XmlDocument();
  myDoc.Load(foo);

  ...
}

-----------default.aspx.cs-------------
protected void Page_Load(object sender, EventArgs e)
{
  ...
  xxx.yyy.trymefunc((HttpApplication)sender);
  ...
}

なんか駄目かもしれんけどさ。