How to check in ASP.NET MVC View if site is running on localhost or 127.0.0.1

前端 未结 4 1976
离开以前
离开以前 2020-12-18 17:48

How to check in ASP.NET MVC View if site is running on localhost or 127.0.0.1?

4条回答
  •  心在旅途
    2020-12-18 18:35

    @if (Request.IsLocal) { // do something }
    

    or

    <% if (Request.IsLocal) { // do something } %>
    

提交回复
热议问题