This topic is locked

Adjust Text Field Size

9/30/2009 10:16:36 AM
ASPRunnerPro General questions
M
mfred author

I forgot to adjust the text field size for a couple of fields. I would rather edit the code than have to make the change in ASPRunner and recompile. How can I do this in the code?

J
Jane 10/1/2009

Hi,
if you use ASPRunnerPro6.1 open generated include/..._settings.asp file, find this line:

fdata("EditParams") = ""



and add following code just after:

fdata("EditParams") = CSmartStr(fdata("EditParams")) & " maxlength=35"

fdata("EditParams") = CSmartStr(fdata("EditParams")) & " size=35"