我正在尝试将网站项目转换为 Web 应用程序,但遇到了一些问题,即 .aspx.cs 文件在 .aspx 中看不到任何控件。我尝试删除 .designer.cs 文件并再次转换为 Web 应用程序,但这并没有解决我的问题。如果我将 .designer.cs 文件的命名空间更改为“SoftwareCheckout”(与我的 .aspx.cs 相同的命名空间),.aspx.cs 可以很好地看到 .aspx 中的控件,但由于 .designer.cs是自动生成的,我会在它重新生成后立即对其进行任何更改。这让我相信这是我的命名空间的问题,但我不能 100% 确定。
这是我的 .aspx 的第一行,名为 StuCheckout.aspx:
<%@ Page Language="C#" AutoEventWireup="True" Inherits="StuCheckout" Codebehind="StuCheckout.aspx.cs" %>
这是我的 .aspx.cs 的前几行,名为 StuCheckout.aspx.cs(例如,无法访问 lblUser 和 lblTime)
namespace SoftwareCheckout
{
public partial class StuCheckout : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
lblUser.Text = CurrentUser.getUsername();
lblTime.Text = CurrentUser.getDate();
setLocalRestrictions();
if (!(lblErrorText.Text == String.Empty))
lblErrorText.Visible = true;
我的 .designer.cs 看起来像这样:
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
public partial class StuCheckout {
/// <summary>
/// Head1 control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.HtmlControls.HtmlHead Head1;
有没有其他人遇到过这个问题?我的想法在这里用完了,非常感谢任何帮助!