Say for example I have an asp button:
<asp:Button id="btnCustomDropDown"
Text="*"
OnClick="txtOutputRating_btnPressed"
runat="server"/>
When the user presses that button, I want a keyboard button to be pressed. For example the down key on the keyboard. I was thinking of something like this on the backend. Is this possible?
void txtOutputRating_btnPressed(Object sender, EventArgs e)
{
System.Windows.Forms.SendKeys.Send("{DOWN}");
}