Subversion Repositories DevTools

Rev

Rev 6827 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6827 Rev 6986
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 = _