How Get Namespace On Javascript In Asp.net Web?
%@ Page Language='C#' AutoEventWireup='true' CodeBehind='Default.aspx.cs' Inherits='WebApplication1._Default' %>
Solution 1:
Try
$(document).ready(function () {
debugger;
var counter = "test";
var service1 = new WebApplication1.Service1();
service1.DoWork(counter, ResultLoadMainGridProductType, ErrorLoadMainGridProductType);
});
Also check to make sure that the javascript file jsdebug
is in your loaded scripts.
Post a Comment for "How Get Namespace On Javascript In Asp.net Web?"