Click here to Skip to main content
15,907,001 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Just like this I post back on asp controls dropdown on page load

if (!Page.IsPostBack)

{



regiondrop.DataSource= tea.unileverlist().ToList();

regiondrop.DataTextField = "Region";

regiondrop.DataValueField = "Region";

regiondrop.DataBind();

Label4.Visible = false;



}

What I have tried:

I have control input

<input ID="fromdate" value="dd/mm/yyyy" runat="server" clientidmode="static" />

<input ID="todate" value="dd/mm/yyyy" runat="server" clientidmode="static" />
Now how I post back on these ID's from date and to date in jquery ?
Posted
Updated 4-Oct-16 6:17am

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900