2

皆さん、こんにちは。

私はFacebookのゲームを開発しようとしていますが、私はこのテーマではかなり新しいです. Visual Studio でデバッグすると、ページはエラーなしで表示されますが、それを自分の Web サイトに公開すると、エラー ページが表示されます。

Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. 

Parser Error Message: Could not load type 'Xandra.index'.

Source Error: 
 Line 1:  <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="index.aspx.cs" Inherits="Xandra.index" %>
Line 2:  
Line 3:  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Source File: /Apps/Web/Xandra/Index.aspx    Line: 1 

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272

そして、私のソースコードは次のとおりです。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Facebook;
using Facebook.Web;
using Facebook.Session;

namespace Xandra
{
    public partial class index : Facebook.Web.CanvasIFrameBasePage
    {
        protected void Page_Load(object sender, EventArgs e)
        {

            CanvasSession fs = new Facebook.Session.FBMLCanvasSession(Config.APIKey, Config.Secret);
            base.RequireLogin = true;
        }

        protected void Button1_Click(object sender, EventArgs e)
        {

            long uid = (long)base.Api.Users.GetInfo().uid;
            Button1.Text = uid.ToString();
        }
    }
}
4

1 に答える 1

0

適切なアセンブリ ファイル (/bin) もすべて展開しましたか?

于 2012-04-22T14:28:20.723 に答える