21 lines
517 B
C#
21 lines
517 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.SOA.Controls {
|
|
|
|
|
|
internal class IntTextbox : ParamControl {
|
|
|
|
public override String Html {
|
|
get {
|
|
return String.Format( "<span class=\"paramLabel\">{0}</span> <span class=\"paramControl\"><input name=\"{1}\" type=\"text\" value=\"{2}\" class=\"IntTextbox\" /></span>", base.Label, base.Name, base.Value );
|
|
}
|
|
}
|
|
|
|
public override System.Type Type {
|
|
get { return typeof( int ); }
|
|
}
|
|
|
|
}
|
|
}
|
|
|