|
how to pass exchange name in URL |
Posted by Srinivas on Mar-29-2016 18:19 |
|
Hi Sir,
we used timerTick() event for automatic updating chart.Instead of updating chart it is reloading page with default values.hence we used session to store the updated values even after reload.
After doing so., while we are passing exchange name in URL. It has to update the page to the passed exchange name but, it is not taking that value and the page remained same with out updating because of session.(i.e., it is not updating combobox).
Please kindly provide the solution.
Thanks and Regards. |
Re: how to pass exchange name in URL |
Posted by Peter Kwan on Mar-30-2016 00:24 |
|
Hi Srinivas,
Do you mean you want the combo box to show the same value as the URL "exchange" query parameter? I think ASP.NET allows you to set the combo box to any valid values. For example, if your combo box is an <asp:DropDownList> control, you can use:
myComboBox.Text = Request["exchange"];
You can refer to ASP.NET documentation on the various properties of the <asp:DropDownList> control.
Hope this can help.
Regards
Peter Kwan |
|