服务器控件都是以合适的html语言发送到客户端的,因此你完全可以用js操控,如
文本框<asp:TextBox id="TextBox1" runat="server"></asp:TextBox>,在客户端为
<input name="TextBox1" type="text" id="TextBox1" />
下拉框
<asp:DropDownList id="DropDownList1" runat="server" Width="78px"></asp:DropDownList>

<select name="DropDownList1" id="DropDownList1" style="width:78px;Z-INDEX: 102; LEFT: 215px; POSITION: absolute; TOP: 317px">
发送到客户端时,自动加上了name属性,值和id的值相同
你要做的只是用js操作name="TextBox1"的input以及name="DropDownList1"的select,不用多说了吧:)
要提醒的一点是提交刷新后js修改的结果会清空,得手工提交到服务器端保存