accesskey attribute
i am working in a asp.net mobile forms project. i have a link.
<mobile:Link ID="lnkSearch" Runat="server" accesskey="1" NavigateUrl="~/Unauthenticated/Search.aspx" SoftkeyLabel="Go">1- Go Flinging</mobile:Link>
.net does not support the accesskey attribute but it is a valid wml attribute. the IDE tells me
"Warning 6 Validation (Mobile HTML): Attribute 'accesskey' is not a valid attribute of element 'Link'"
agian accesskey is a valid wml attribute and i need to include it. its just awarning so i proceed with the compile. for some reason when the its renders it does not include the accesskey attribute in the wml.
it renders <a href="/PhoneFling/Unauthenticated/Search.aspx" title="Go">1- Go Flinging</a>
i need it to render the accesskey attribute. how can i do this?

