Tagged Questions
2
votes
1answer
2k views
How can I update the ScriptManager from a .ascx Web User Control in DNN?
I've created a Web Service that I need to use in my .ascx page. I can't just add this:
<asp:ScriptManager ID="OWUScripts" runat="server">
<Services>
<asp:ServiceReference ...
1
vote
1answer
151 views
How to get all WebMethods of a WebService pointed by a ServiceReference.Path
In my ASP.NET application, I use the ServiceReferenceCollection to carry a set of WebServices, and in the code-behind, I'm asked to figure out all the public WebMethod(s) and corresponding arguments ...
0
votes
1answer
254 views
Mock/Fake ASP.NET Service References and QUnit testing
I'm just getting into QUnit testing, and have run into a problem on my first page :S
We use ASP.NET Service References to take advantage of async data loading on html pages, creating a reference to a ...