init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace Zhaizj.Framework.SOA.Controls {
|
||||
|
||||
|
||||
internal class LongTextbox : ParamControl {
|
||||
|
||||
public override String Html {
|
||||
get {
|
||||
return String.Format( "<span class=\"paramLabel\">{0}</span> <span class=\"paramControl\"><textarea name=\"{1}\" class=\"LongTextbox\">{2}</textarea></span>", base.Label, base.Name, base.Value );
|
||||
}
|
||||
}
|
||||
|
||||
public override System.Type Type {
|
||||
get { return typeof( String ); }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user