1

我有一个包含 18 个文本框的数组,如何指定哪个文本框为空,以便我可以将DBNull参数传递给我的数据库访问层?我正在使用带有 Ms Access 的 OleDb

4

1 回答 1

0

这是一种允许从零长度字符串往返 NULL 的解决方案。

// <custom:NullableTextBox runat="server" id="Field1" />
// In code behind bind & unbind using Field1.NullableValue instead of Field1.Text
// In web config, update pages/controls as such with MyApp replaced with the 
// assembly name of your app
// <pages>
//      <controls>
//          <add  tagPrefix="custom" namespace="Custom" assembly="MyApp"/>
//     </controls>
//  </pages>
public class NullableTextBox :TextBox
{
    public object NullableValue
    {
        set
        {
            ViewState["IsDbNull"] = DBNull.Value==value;
            Text = value.ToString();
        }
        get
        {
            bool isNull = false;
            if (ViewState["IsDbNull"] != null)
            {
                isNull = Convert.ToBoolean(ViewState["IsDbNull"]);
            }

            if (isNull
                    && string.IsNullOrEmpty(Text.Trim()))
            {
                return DBNull.Value;
            }
            else
            {
                return Text;
            }
        }
    }
}
于 2012-12-07T19:57:52.310 回答