A
Arne Garvander
The code below works fine in a sample test page. It stops working when I
apply a master page to my web page. What do I need to do different when I use
a master page?
(I am using Asp.net 3.5 sp1.)
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
<Services>
<asp:ServiceReference Path="~/BankService.asmx" />
</Services>
</asp:ScriptManagerProxy>
<script type="text/javascript">
function GetBank() {
var route = $get('Routing');
var bank = BankService.GetBank(route.value, onRequestComplete);
}
</script>
apply a master page to my web page. What do I need to do different when I use
a master page?
(I am using Asp.net 3.5 sp1.)
<asp:ScriptManagerProxy ID="ScriptManagerProxy1" runat="server">
<Services>
<asp:ServiceReference Path="~/BankService.asmx" />
</Services>
</asp:ScriptManagerProxy>
<script type="text/javascript">
function GetBank() {
var route = $get('Routing');
var bank = BankService.GetBank(route.value, onRequestComplete);
}
</script>