Globa.asax中的Application_Start方法没有被击中

时间:2016-08-10 21:53:09

标签: asp.net iis global-asax

我尝试过做IISReset,然后重新启动并停止并启动应用池,但我无法通过Application_Start来达到断点。

Session_Start确实受到了打击,我查看了其他stackoverflow问题和答案,但没有帮助

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/main_root"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.sara.internetcheck.MainActivity">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true">

        <TextView
            android:id="@+id/text_header"
            style="@style/TextAppearance.AppCompat.Headline"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:gravity="center"
            android:text="@string/good_news_title" />

        <TextView
            android:id="@+id/text_body"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/text_header"
            android:text="@string/good_news_text" />
    </RelativeLayout>
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

  1. 通过网络浏览器加载您的应用。
  2. 将调试器附加到IIS进程w3wp.exe。
  3. 为您的web.config添加空格。
  4. 再次通过网络浏览器点击您的应用。
  5. 您的应用程序刚刚被回收,应该点击app_start断点。
  6. 完成后删除空格;)