ASPX and C# file on SharePoint Server

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Drew Carter

    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.Htt pCompileExcepti on: c:\Program Files\Common
    Files\Microsoft Shared\web server
    extensions\12\T EMPLATE\CONTROL TEMPLATES\ASPNE TControl\ASPNET Control.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.asc x:

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

    <script runat ="server" >

    protected override void Render(HtmlText Writer 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";
    }
    }


  • Bob Barrows [MVP]

    #2
    Re: ASPX and C# file on SharePoint Server

    Drew Carter wrote:
    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.publi c.dotnet.framew ork.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"


    Comment

    Working...