Hi all,
I need to rename the input text field, eg. text.htm to text.asp. I think I have seem this post on here a month ago, but was not able to search it. Any lead lead to the right direction will be most appreciate.
thanks
Printable View
Hi all,
I need to rename the input text field, eg. text.htm to text.asp. I think I have seem this post on here a month ago, but was not able to search it. Any lead lead to the right direction will be most appreciate.
thanks
rename a text field or a filename? Do you actually have a text field named text.htm?
I am going to assume you want to dynamically change the name attribute of a text field. with javascript you could do it this way.
document.formname.textfieldname.name = "new name"
rename the text field...not filename.
saee above and tell me if thats not what you are looking for. If it isnt , please explain a little further what you are trying to accomplish.
thank-you for your help, I find the answer with replace function.
Replace(expression, find, replacewith[, start[, count[, compare]]])