I have to change a value in an input tag for a PayPal form. The name of the
input is "return" and I can't change it.
I can't use return.Attributes.Add
Is there a way to use Attributes.Add by the element id rather than name?
Thanks...
Göran Andersson - 30 Nov 2007 23:04 GMT
> I have to change a value in an input tag for a PayPal form. The name of the
> input is "return" and I can't change it.
[quoted text clipped - 4 lines]
>
> Thanks...
If you are using C#, use:
@return.Attributes.Add(...);

Signature
Göran Andersson
_____
http://www.guffa.com
Eliyahu Goldin - 02 Dec 2007 12:35 GMT
this.return.Attributes.Add

Signature
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
>I have to change a value in an input tag for a PayPal form. The name of
>the input is "return" and I can't change it.
[quoted text clipped - 4 lines]
>
> Thanks...