FormToModel 转换错误
<input type="text" name="txtProName" size="30" value="<%=model.ProName %>" class="validate[required]" />--------------------------------------------------类begin
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
using System.Web.UI.HtmlControls;
using System.Web.UI;
using System.Collections.Specialized;
namespace LSSystem.Tools
{
/// <summary>
/// 对象赋值与表单绑值
/// </summary>
/// <typeparam name="T"></typeparam>
public static class FormToModel<T>
{
#region 将表单集合赋给实体对象
/// <summary>
/// 将表单集合赋给实体对象
/// </summary>
/// <param name="t">实体对象</param>
/// <param name="form">表单集合</param>
public static void SetModel(T t, NameValueCollection form)
{
Type type = t.GetType();
PropertyInfo[] pi = type.GetProperties();
foreach (PropertyInfo p in pi)
{
if (form["txt" + p.Name] != null)
{
p.SetValue(t, Convert.ChangeType(form["txt" + p.Name], p.PropertyType), null);
}
}
}
#endregion
#region 将对象赋予绑定到表单
/// <summary>
/// 将对象赋予绑定到表单
/// </summary>
/// <param name="t">实体对象</param>
/// <param name="c">页面对象</param>
public static void BindFormValue(T t, Page page)
{
Type type = t.GetType();
PropertyInfo[] pi = type.GetProperties();
foreach (PropertyInfo p in pi)
{
HtmlInputText input = page.FindControl("txt" + p.Name) as HtmlInputText;
HtmlTextArea text = page.FindControl("txt" + p.Name) as HtmlTextArea;
if (input != null)
{
input.Value = p.GetValue(t, null).ToString();
}
else if (text != null)
{
text.InnerText = p.GetValue(t, null).ToString();
}
}
}
#endregion
}
}
------------------------------------------------------类end
后台用这个FormToModel<Model.ProductManage>.SetModel(model, Request.Form);
接收用户的输入,直接转成实体 。
然后出现了错误,怎么办? --------------------编程问答-------------------- 从“System.String”到“System.Nullable`1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]”的强制转换无效。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.InvalidCastException: 从“System.String”到“System.Nullable`1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]”的强制转换无效。
这怎么弄啊? --------------------编程问答-------------------- http://blog.chinaunix.net/uid-28299820-id-3427813.html --------------------编程问答-------------------- 一、四种典型的类型转换方式
对于类型转化,或者进一步地,对于像Int、Double、DateTime、String等这些原生类型之间的转化,我们具有四种典型的转换方式。如果类型之间不具有隐士转换关系存储,我们可以之间通过类型转换操作符进行显式转换,比如:
double doubleValue = 3.14159265;
int intValue = (int)doubleValue;
第二种则是借助于Convert这个静态类型的ChangeType或者ToXxx方法(Xxx代表转换的目标类型),比如:
string literalValue = "123";
int intValue1 = Convert.ToInt32(literalValue);
int intValue2 = (int)Convert.ChangeType(literalValue,typeof(int));
第三种方法为创建TypeConverter或者它的基于具体类型的若干子类,比如StringConverter、BooleanConverter、DateTimeConverter等。在使用的时候你需要先实例化相应的TypeConverter,然后调用相应的类型转换方法。比如:
string literalValue = "1981-08-24";
DateTimeConverter dateTypeConverter = newDateTimeConverter();
DateTime dateTimeValue = (DateTime)dateTypeConverter.ConvertFromString(literalValue);
literalValue = "02:40:50";
TimeSpanConverter timeSpanConverter = new imeSpanConverter();
TimeSpan timeSpanValue = (TimeSpan imeSpanConverter.ConvertFromString(literalValue); --------------------编程问答--------------------
二、当类型转换遭遇Nullable<T>类型
Convert几乎实现所有“兼容类型”之间的转换,也可以向Parse方法一样解析具有合法格式的字符串。但是,如果目标类型换成是Nullable<T>类型的时候,类型转换将会失败。比如我们将上面第二个例子的目标类型从int换成int?(Nullable<Int32>):
string literalValue = "123";
try
{
int? intValue = (int?)Convert.ChangeType(literalValue,typeof(int?));
}
catch (InvalidCastException ex)
{
Console.WriteLine(ex.Message);
}
http://www.csharpwin.com/csharpspace/12851r5551.shtml
补充:.NET技术 , ASP.NET