Re: How would you handle needed "System" class/table/form in application?
- From: "Ronald S. Cook" <rcook@xxxxxxxxxxxx>
- Date: Thu, 3 May 2007 06:34:14 -0600
Ok, the below won't fly and I don't want to rename all my (form) classes to,
like, "SystemForm" or "frmSystem". Thanks.
System.aspx
-------------
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
namespace Forms
{
public partial class System : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Classes.System System = new Classes.System();
Response.Write(System.SelectSystem());
}
}
}
"Jon Skeet [C# MVP]" <skeet@xxxxxxxxx> wrote in message
news:MPG.20a395bb2be7493d49@xxxxxxxxxxxxxxxxxxxxxxx
Ronald S. Cook <rcook@xxxxxxxxxxxx> wrote:
Well, the web form inherits from System.Web... so even if I wrap it in a
namespace, that doesn't fly.
Without an example of where it's actually stopping you, it's hard to
help much more, I'm afraid.
--
Jon Skeet - <skeet@xxxxxxxxx>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
.
- Follow-Ups:
- Re: How would you handle needed "System" class/table/form in application?
- From: mpetrotta@xxxxxxxxx
- Re: How would you handle needed "System" class/table/form in application?
- References:
- How would you handle needed "System" class/table/form in application?
- From: Ronald S. Cook
- Re: How would you handle needed "System" class/table/form in application?
- From: Jon Skeet [C# MVP]
- Re: How would you handle needed "System" class/table/form in application?
- From: Ronald S. Cook
- Re: How would you handle needed "System" class/table/form in application?
- From: Jon Skeet [C# MVP]
- How would you handle needed "System" class/table/form in application?
- Prev by Date: Code to handle a proxy server?
- Next by Date: IComparable Byte-Array Comparison
- Previous by thread: Re: How would you handle needed "System" class/table/form in application?
- Next by thread: Re: How would you handle needed "System" class/table/form in application?
- Index(es):
Relevant Pages
|