I dont think you can pass parameters using softkeys - it has to be a querystringparam. Thats what i think.
Hi,
<CiscoIPPhoneInput>
<Title>Test</Title>
<Prompt></Prompt>
<URL>http://<%=HomeDir%>/addres.asp</URL>
<InputItem>
<DisplayName>Name</DisplayName>
<QueryStringParam>txtuser</QueryStringParam>
<DefaultValue></DefaultValue>
<InputFlags>A</InputFlags>
</InputItem>
<InputItem>
<DisplayName>Phone</DisplayName>
<QueryStringParam>txtphone</QueryStringParam>
<DefaultValue></DefaultValue>
<InputFlags>N</InputFlags>
</InputItem>
<SoftKeyItem>
<Name>Back</Name>
<URL>http://<%=HomeDir%>/menu.asp</URL>
<Position>1</Position>
</SoftKeyItem>
<SoftKeyItem>
<Name>Add</Name>
<URL>SoftKey:Submit</URL>
<Position>2</Position>
</SoftKeyItem>
<SoftKeyItem>
<Name>Search</Name>
<URL>SoftKey:Submit</URL>
<URL>QueryStringParam:search=1</URL>
<Position>3</Position>
</SoftKeyItem>
</CiscoIPPhoneInput>
when i press Add key i get querystringparameter txtuser and txtphone on addres.asp page but it is not work with
Search key.
How to pass the QueryStringParam search=1 along with the InputItem txtuser and txtphone to the addres.asp page when Search key is press?
thanks in advance.