1

TextBoxクラスからNumBoxというカスタムクラスを派生させ、このクラスのセッターとゲッターを作成しようとしていますが、プログラムを実行すると、「FormatExceptionがユーザーコードによって処理されませんでした」という実行時例外が発生します。これはthis.Textが整数ではないことと関係があるように見えますが、私のプログラムの入力はintでした。エラーは次の行で発生します。 return Convert.ToInt16(this.Text);

助けてくれてありがとう!

以下の私のコードを見つけてください:default.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <glm:numbox ID="NumBox1" runat="server" Style="position: relative" />
        <asp:Button ID="Button_SquareIt" runat="server" Style="position: relative" 
            Text="Square It" onclick="Button_SquareIt_Click" />
    </div>
    </form>
</body>
</html>

webconfig

<?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
    <system.web>
        <compilation debug="true" targetFramework="4.0"/>
        <pages>
            <controls>
                <add tagPrefix="glm" namespace="GLM"/>
            </controls>
        </pages>
    </system.web>
</configuration>

App_Code / NumBox.cs

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Collections.Generic;
using System.Linq;
using System.Web;

/// <summary>
/// Summary description for Class1
/// </summary>
/// 
namespace GLM
{
    public class NumBox : TextBox
    {
        public NumBox()
        {
            //
            // TODO: Add constructor logic here
            //
        }
        public int Num
        {
            set
            {
                this.Text = value.ToString();
            }
            get
            {
                return Convert.ToInt16(this.Text);
            }
        }
    }
}

default.aspx.cs

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

public partial class _Default : System.Web.UI.Page
{
    GLM.NumBox n = new GLM.NumBox();
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button_SquareIt_Click(object sender, EventArgs e)
    {
       n.Num = n.Num *  n.Num;
    }
}
4

2 に答える 2

1

わかりました。これをもう少し詳しく調べて、問題の原因を見つけました。

NumBoxの新しいインスタンスを作成し、それに対してアクションを実行します。ページ上に作成されたインスタンスを参照していません。

関連するdesigner.csファイルがない場合は、次のように機能するはずです。

public partial class _Default : System.Web.UI.Page
{
    GLM.NumBox NumBox1;
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button_SquareIt_Click(object sender, EventArgs e)
    {
       NumBox1.Num = NumBox1.Num *  NumBox1.Num;
    }
}

関連するdesigner.csファイルがある場合は、NumBox1の宣言を削除します。

于 2013-02-27T20:42:23.920 に答える
0

次のことを試してください。

    public int Num {
        set {
            this.Text = value.ToString();
        }
        get {
            return Int16.Parse(this.Text);
        }
    }

TryParseこの方法を使用して、実際の数のみを解析しようとしていることを確認することをお勧めします。Textプロパティの場合IsNullOrEmpty、ParseとTryParseは例外をスローすることに注意してください。空の値をテストする必要があります。空の場合は、を返すか0、プロパティにを返しNullable<int>ます。

また、返すタイプに解析する必要があります。int解析中にプロパティが返されますInt16

于 2013-02-27T20:34:16.800 に答える