Posted on: 9/27/2015 5:15:56 PM | Views : 918

I'm trying to post data from a dropdown list box on an ascx page to an aspx page and am have problems. One how do I drive the event. Two how do I get the data there. My current approach is not working.
on the ascx page I have a property defined as such:
private string mySystemName; public string SystemName { get { return mySystemName; } set { mySystemName = value; } } Then in the SelectedIndexChanged event I have the following code:
protected void DropDownListSystem_SelectedIndexChanged(object sender, EventArgs e) { getLog(); mySystemName = DropDownListSystem.SelectedValue; } Now here is where I'm running into the problem. I don't know where in the aspx page to put code to pick up these changes or how even to know these events have occurred. I've been exerimenting by putting t ...

Go to the complete details ...