本文介绍了在何种命名空间的Response.Redirect不属于?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我写这篇文章的一个静态类,我得到的红线波纹管响应:

When i write this in a static class i get red line bellow Response:

  Response.Redirect("ErrorPage.aspx.aspx?Error=" + READERROR);

这问我是否我有一个程序集缺失。我要如何解决这个问题?

It asks me whether i have got a missing assembly. How do i fix this?

推荐答案

命名空间: 的System.Web

大会: 的System.Web (在System.Web.dll中)

Assembly: System.Web (in System.Web.dll)

但如果你定义在静态类的话,我想应该是...

But if you are defining in Static class, then I think it should be...

HttpContext.Current.Response.Redirect(....);

这篇关于在何种命名空间的Response.Redirect不属于?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 02:40