| Line 235... |
Line 235... |
| 235 |
|
235 |
|
| 236 |
End Function
|
236 |
End Function
|
| 237 |
'-----------------------------------------------------------------------------------------------------------------
|
237 |
'-----------------------------------------------------------------------------------------------------------------
|
| 238 |
Public Function TextBox ( sName, sValue, sAttributes )
|
238 |
Public Function TextBox ( sName, sValue, sAttributes )
|
| 239 |
TextBox = _
|
239 |
TextBox = _
|
| 240 |
"<input type='text' name='"& sName &"' "& sAttributes &" value='"& sValue &"' "& msDisabled &">"
|
240 |
"<input type='text' name='"& sName &"' "& sAttributes &" value='"& JSEncode(sValue) &"' "& msDisabled &">"
|
| 241 |
|
241 |
|
| 242 |
End Function
|
242 |
End Function
|
| 243 |
'-----------------------------------------------------------------------------------------------------------------
|
243 |
'-----------------------------------------------------------------------------------------------------------------
|
| 244 |
Public Function SubmitButton ( sValue, sAttributes )
|
244 |
Public Function SubmitButton ( sValue, sAttributes )
|
| 245 |
SubmitButton = _
|
245 |
SubmitButton = _
|