i just uploaded a control into a page using Ajax and nothing works anymore.i mean links, dropdown, buttons are all dead. when i look at the page source i can not even see the source for the uploaded control.Only if i select an item i can see its sourceThis is the button handler i useenter herewhich calls the …
via Asp.Net Developed Tutorials » Search Results » ajax:
After loading control into page via Web service nothing work
i just uploaded a control into a page using Ajax and nothing works anymore.
i mean links, dropdown, buttons are all dead.
when i look at the page source i can not even see the source for the uploaded control.
Only if i select an item i can see its source
This is the button handler i use
enter herewhich calls the following service
[WebMethod(EnableSession = true)]
public string DisplayDetailsBox()
return ViewManager.RenderView(“~/UserControls/DetailsBox.ascx”, null);
which returns the following string
Select the Number of players
Select the number of Players
– Select – 1 2 3 4 5
“>
the string returned is binded to the page like this
function DisplayDetailsBox(result)
HidePanel(‘Details’, ‘Startbox’);
document.getElementById(‘Details’).innerHTML = result;
to a simple
thanks for your help
For more info: After loading control into page via Web service nothing work
Asp.Net Developed Tutorials » Search Results » ajax