English 中文(简体)
• 如何做我解说的。 WebForm_DoPostBackWithOptions?
原标题:How do I debug javascript:WebForm_DoPostBackWithOptions?

在我的网页上,这一链接是徒劳的。

<a id="dnn_ctr1587_EditEventsCalendar_cmdUpdateReturn" title="Update &amp; Return" class="CommandButton" href= javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("dnn$ctr1587$EditEventsCalendar$cmdUpdateReturn", "", true, "", "", false, true)) >Update &amp; Return</a>

我为什么不敢说什么领域阻止了这一法典的提交,以便我能够确定ug?

最佳回答

Chrome对我来说是最好的:

  1. I clicked the wrench in the upper right.
  2. I went to tools --> JavaScript Console
  3. Above the sourcecode view is a dropdown listing files. I searched through each file for WebForm_DoPostBackWithOptions (I had to hit enter in the search box on each file to get the search results to refresh)
  4. It ended up in ScriptResource.axd line 29 was returning false. I looked in the watch window and was able to see the name of the control firing the error.

P.S. 最初,我与Fox公司进行了脱.。 java的文字在一条线上显示。 Chrome光显示,它很幸运,因此,我可以告诉正在发生什么。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签