Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old April 18th, 2007, 09:45 PM
Drew Carter
Guest
 
Posts: n/a
Default ASPX and C# file on SharePoint Server

Hi. I'm not sure whether this is a SharePoint or an ASP problem... but I
thought it made sense to post here.

I'm having trouble instantiating a C# class from within my ascx file. When
I attempt to run it on our SharePoint 2007 server, I receive this error in
the log file: "System.Web.HttpCompileException: c:\Program Files\Common
Files\Microsoft Shared\web server
extensions\12\TEMPLATE\CONTROLTEMPLATES\ASPNETCont rol\ASPNETControl.ascx(12):
error CS0103: The name 'Class1' does not exist in the current context"

How do I allow the program to recogonize Class1? When I rewrite the aspx
file to return an ordinarily string, it funcitons fine, as long as I don't
call the outside class. Class1 was compiled correctly and it exists as
bin\Class1.dll.

Any advice would be appreciated, and I have my code below. Thanks!

-Drew Carter



GetUsername.ascx:

<%@ Control Language="C#" AutoEventWireup="true" ClassName="GetUsername" %>

<script runat ="server" >

protected override void Render(HtmlTextWriter UI)

{
Class1 output = new Class1();
UI.Write(output);

}

</script>





Class1.cs

using System;

public class Class1
{
public Class1()
{}
public static string getUserName()
{
return "Class1 String";
}
}


  #2  
Old April 19th, 2007, 11:45 AM
Bob Barrows [MVP]
Guest
 
Posts: n/a
Default Re: ASPX and C# file on SharePoint Server

Drew Carter wrote:
Quote:
Hi. I'm not sure whether this is a SharePoint or an ASP problem...
but I thought it made sense to post here.
I can't say about Sharepoint, but I'm certain it's not an ASP problem ...
perhaps ASP.Net.

There was no way for you to know it (except maybe by browsing through some
of the previous questions in this newsgroup before posting yours - always a
recommended practice) , but this is a classic asp newsgroup. ASP.Net bears
very little resemblance to classic ASP so, while you may be lucky enough to
find a dotnet-knowledgeable person here who can answer your question, you
can eliminate the luck factor by posting your question to a group where
those dotnet-knowledgeable people hang out. I suggest
microsoft.public.dotnet.framework.aspnet.


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"


 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles