我有 2 页,它们是相同的,除了数据库中的一列(带有敏感信息),它不应该显示在其中一页中。
例如
myPageIncludeSensitiveInfo.aspx
myPageExlucdeSensitiveInfo.aspx
此时,每个页面都在一个单独的代码隐藏文件中,我需要帮助来找出如何在一个页面中执行此操作。有一个pagebaseclass
用于安全性。我不允许使用Querystrings
,
e.g. myPage.aspx?include=true
or myPage.aspx?exclude=true
在 Windows 页面中,我可以选择:
dim myPage1 as new myPage
myPage.bIncludeSensitiveInfo = False
myPage1.show()
但有了asp.net forms
它response.redirect
,我不知道是否可以事先设置属性。
谢谢