简体   繁体   中英

Problem in setting breakpoint in vs2010 asp.net

I'm new in the asp.net. I'm having one web page in asp.net which is developed in vs2010 & for design i'm using devxpress control. I've designed one page & the code behind file is "cs" file. I've used page load event. & set a break point to the page load event. but it is not showing me in the debug mode. And code which i've written in the page load that code is also not executing. I don't know why it is happened for my web page. Also i've used master page for designing my web page.

How to resolve this problem?

thanks.

Perhaps you are not working with Internet explorer to debug your application? Perhaps you just have to "Use Internet Explorer as default browser".

This description is for Silverlight pages but can work for ASPX too: Click on the web page that has your control (such as default.aspx) and choose “Browse with…” from the context menu.

默认浏览器

I also found - this - to use Debugger.

Take a look at the page ASPX on the first line there is the @Page directive. Check if there is the attribute CodeBehind on that line like this:

<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="*yourfile*.aspx.cs" Inherits="*Namespace.yourfile*" %>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM