ボタンとテキストボックスを備えた単純な ASP.NET ページがあり、ボタンをクリックしてテキストボックスに「Hello」を表示したいと考えています。
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SOM.aspx.cs" Inherits="SOM" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div><br />
</div>
<asp:Button ID="MyBtn" runat="server" Text="Click" OnClick="SearchBtn_Click" />
<br />
<br />
<asp:TextBox ID="TextBox1" runat="server" Width="268px"></asp:TextBox>
コード ビハインドでは、Intellisence を使用してオートコンプリートすることができますTextBox1.Text = "Hello";
しかし、デバッグしようとすると、プロジェクトはビルドに失敗し、
名前 TextBox1 は現在のコンテキストに存在しません
設定する必要があるプロパティはありますか?
///コードビハインド
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Imaging;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Windows.Input;
public partial class SOM: System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void SearchBtn_Click(object sender, EventArgs e)
{
//TextBox1.Text = "HI";
}
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
}
}