gpt4 book ai didi

c# - 为什么我不能在我的代码 asp.net c# 中使用来自 app_code 的代码文件

转载 作者:太空狗 更新时间:2023-10-29 18:27:54 25 4
gpt4 key购买 nike

我正在开发一个 asp.net 网络应用程序,我的 app_code 中有几个类,但出于某种原因我不能在我的代码中使用它们中的任何一个。我尝试使用相同的命名空间,我尝试在两个文件中都没有任何命名空间,但没有任何帮助。

这是我的页面代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using LinkedIn;
using LinkedIn.ServiceEntities;


namespace Authentication
{
public partial class LinkedinMoreInfo : LinkedinBasePage
{
protected void Page_Load(object sender, EventArgs e)
{

}
}
}

还有我在类里面的代码:

using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Xml.Linq;

using LinkedIn;

namespace Authorisation
{
public class LinkedInBasePage : System.Web.UI.Page
{
private string AccessToken
{
get { return (string)Session["AccessToken"]; }
set { Session["AccessToken"] = value; }
}

private InMemoryTokenManager TokenManager
{
get
{
var tokenManager = (InMemoryTokenManager)Application["TokenManager"];
if (tokenManager == null)
{
string consumerKey = ConfigurationManager.AppSettings["LinkedInConsumerKey"];
string consumerSecret = ConfigurationManager.AppSettings["LinkedInConsumerSecret"];
if (string.IsNullOrEmpty(consumerKey) == false)
{
tokenManager = new InMemoryTokenManager(consumerKey, consumerSecret);
Application["TokenManager"] = tokenManager;
}
}

return tokenManager;
}
}

protected WebOAuthAuthorization Authorization
{
get;
private set;
}

protected override void OnLoad(EventArgs e)
{
this.Authorization = new WebOAuthAuthorization(this.TokenManager, this.AccessToken);

if (!IsPostBack)
{
string accessToken = this.Authorization.CompleteAuthorize();
if (accessToken != null)
{
this.AccessToken = accessToken;

Response.Redirect(Request.Path);
}

if (AccessToken == null)
{
this.Authorization.BeginAuthorize();
}
}

base.OnLoad(e);
}
}
}

知道可能是什么问题吗?提前致谢

最佳答案

进入文件的属性,将 Build Action 更改为 Compile

关于c# - 为什么我不能在我的代码 asp.net c# 中使用来自 app_code 的代码文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7718410/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com