0

C# のコード ビハインドで ASP.NET Web アプリケーションを使用して、Microsoft Visual Studio でプロジェクトに取り組んでいます。CreateUserWizard を追加し、手順 1 でフォームをカスタマイズしました。イベント ハンドラーから、CreatedUser ハンドラーをコード ビハインドに配置して、データベース テーブルを更新しました。ハンドラーのデータ値をフォームから取得したいのですが、コードビハインド ファイルが何らかの理由でデータ値を参照できません。ヘルプ!

メインページ

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="PageControls" runat="server">
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="RightBox" runat="server">
</asp:Content>
<asp:Content ID="Content4" ContentPlaceHolderID="SiteControl1" runat="server">
</asp:Content>
<asp:Content ID="Content5" ContentPlaceHolderID="SiteControl2" runat="server">
</asp:Content>
<asp:Content ID="Content6" ContentPlaceHolderID="SiteControl3" runat="server">
</asp:Content>
<asp:Content ID="Content7" ContentPlaceHolderID="CPMain" runat="server">
    <center>
        <asp:CreateUserWizard ID="CreateUserWizard1" runat="server" 
CreateUserButtonText="Submit"
            RequireEmail="False" OnCreatedUser="CreateUserWizard1_CreatedUser">
            <WizardSteps>
                <asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server">
                    <ContentTemplate>
                        <table border="0" style="font-size: 100%">
                            <tr>
                                <td align="center" colspan="2" style="font-weight: 
bold; color: white; background-color: #5d7b9d">
                                    Register with Acme!
                                </td>
                            </tr>
                            <tr>
                                <td align="right">
                                    <asp:Label ID="Label1" runat="server" 
AssociatedControlID="UserName">
                        First Name:</asp:Label>
                                </td>
                                <td>
                                    <asp:TextBox ID="FName" runat="server">
</asp:TextBox>
                                    <asp:RequiredFieldValidator 
ID="RequiredFieldValidator1" runat="server" ControlToValidate="FirstName"
                                        ErrorMessage="First Name is required." 
ToolTip="First Name is required." ValidationGroup="CreateUserWizard1">*
</asp:RequiredFieldValidator>
                                </td>
                                <tr>
                                    <td align="right">
                                        <asp:Label ID="Label2" runat="server">
                        Last Name:</asp:Label>
                                    </td>
                                    <td>
                                        <asp:TextBox ID="LName" runat="server">
</asp:TextBox>
                                        <asp:RequiredFieldValidator 
ID="RequiredFieldValidator2" runat="server" ControlToValidate="LastName"
                                            ErrorMessage="Last Name is required." 
ToolTip="Last Name is required." ValidationGroup="CreateUserWizard1">*
</asp:RequiredFieldValidator>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="right">
                                        <asp:Label ID="UserNameLabel" runat="server" 
AssociatedControlID="UserName">
                        User Name:</asp:Label>
                                    </td>
                                    <td>
                                        <asp:TextBox ID="UserName" runat="server">
</asp:TextBox>
                                        <asp:RequiredFieldValidator 
ID="UserNameRequired" runat="server" ControlToValidate="UserName"
                                            ErrorMessage="User Name is required." 
ToolTip="User Name is required." ValidationGroup="CreateUserWizard1">*
</asp:RequiredFieldValidator>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="right">
                                        <asp:Label ID="PasswordLabel" runat="server" 
AssociatedControlID="Password">
                        Password:</asp:Label>
                                    </td>
                                    <td>
                                        <asp:TextBox ID="Password" runat="server" 
TextMode="Password"></asp:TextBox>
                                        <asp:RequiredFieldValidator 
ID="PasswordRequired" runat="server" ControlToValidate="Password"
                                            ErrorMessage="Password is required." 
ToolTip="Password is required." ValidationGroup="CreateUserWizard1">*
</asp:RequiredFieldValidator>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="right">
                                        <asp:Label ID="ConfirmPasswordLabel" 
runat="server" AssociatedControlID="ConfirmPassword">
                        Confirm Password:</asp:Label>
                                    </td>
                                    <td>
                                        <asp:TextBox ID="ConfirmPassword" 
runat="server" TextMode="Password"></asp:TextBox>
                                        <asp:RequiredFieldValidator 
ID="ConfirmPasswordRequired" runat="server" ControlToValidate="ConfirmPassword"
                                            ErrorMessage="Confirm Password is 
required." ToolTip="Confirm Password is required."
                                            ValidationGroup="CreateUserWizard1">*
</asp:RequiredFieldValidator>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="center" colspan="2">
                                        <asp:CompareValidator ID="PasswordCompare" 
runat="server" ControlToCompare="Password"
                                            ControlToValidate="ConfirmPassword" 
Display="Dynamic" ErrorMessage="The Password and Confirmation Password must match."
                                            ValidationGroup="CreateUserWizard1">
</asp:CompareValidator>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="center" colspan="2" style="color: red">
                                        <asp:Literal ID="ErrorMessage" runat="server" 
EnableViewState="False"></asp:Literal>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="right">
                                        <asp:Label ID="Label3" runat="server" 
AssociatedControlID="UserName">
                        Role:</asp:Label>
                                    </td>
                                    <td>
                                        <asp:DropDownList ID="RoleSelector" 
runat="server">
                                            <asp:ListItem 
Value="Visitor">Visitor</asp:ListItem>
                                            <asp:ListItem 
Value="Employee">Employee</asp:ListItem>
                                            <asp:ListItem Value="PM">Project 
Manager</asp:ListItem>
                                            <asp:ListItem Value="DM">Department 
Manager</asp:ListItem>
                                            <asp:ListItem Value="Director">IT 
Director</asp:ListItem>
                                        </asp:DropDownList>
                                    </td>
                                </tr>
                        </table>
                    </ContentTemplate>
                </asp:CreateUserWizardStep>
                <asp:CompleteWizardStep ID="CompleteWizardStep1" runat="server">
                    <ContentTemplate>
                    </ContentTemplate>
                </asp:CompleteWizardStep>
            </WizardSteps>
        </asp:CreateUserWizard>
    </center>
</asp:Content>

分離コード:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Security.Principal;

namespace Acme
{
    public partial class Register : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        public void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
        {
            RolesManager.InsertEmployee(FName.Text, LName.Text, RoleSelector.Value, 
User.Identity);
        }
    }
}

コンパイル時に次のエラーが発生します。

Error   1   The name 'FName' does not exist in the current context  C:\MV_Training\Jan2013\C#Projects\AcmePresentation\AcmePresentation\Register.aspx.cs    20  41  AcmePresentation
Error   2   The name 'LName' does not exist in the current context  C:\MV_Training\Jan2013\C#Projects\AcmePresentation\AcmePresentation\Register.aspx.cs    20  53  AcmePresentation
Error   3   The name 'RoleSelector' does not exist in the current context   C:\MV_Training\Jan2013\C#Projects\AcmePresentation\AcmePresentation\Register.aspx.cs    20  65  AcmePresentation

そしてこれはブラウザから:

コンパイル エラーの説明: この要求を処理するために必要なリソースのコンパイル中にエラーが発生しました。次の特定のエラーの詳細を確認し、ソース コードを適切に変更してください。

コンパイラ エラー メッセージ: CS1061: 'ASP.register_aspx' には 'CreateUserWizard1_CreatedUser' の定義が含まれておらず、タイプ 'ASP.register_aspx' の最初の引数を受け入れる拡張メソッド 'CreateUserWizard1_CreatedUser' が見つかりませんでした (using ディレクティブまたはアセンブリ参照?)

ソース エラー:

Line 16: <asp:Content ID="Content7" ContentPlaceHolderID="CPMain" runat="server">
Line 17:     <center>
Line 18:         <asp:CreateUserWizard ID="CreateUserWizard1" runat="server" 
Line 19:             CreateUserButtonText="Submit" RequireEmail="False" 
Line 20:             oncreateduser="CreateUserWizard1_CreatedUser">

ソース ファイル: c:\MV_Training\Jan2013\C#Projects\AcmePresentation\AcmePresentation\Register.aspx 行: 18

ありがとう、ビル

4

1 に答える 1