init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace Zhaizj.Framework.SOA.Controls {
|
||||
|
||||
|
||||
internal class StringTextbox : 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=\"StringTextbox\"/></span>", base.Label, base.Name, base.Value );
|
||||
}
|
||||
}
|
||||
|
||||
public override Type Type {
|
||||
get { return typeof( String ); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user