22 lines
510 B
C#
22 lines
510 B
C#
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 ); }
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|