产品使用及交流论坛

首页 » 产品使用交流区 » 安装及使用交流 » 导航栏超链接问题
zjkyxc - 2012/6/25 17:42:00
请问版主,如何做才能做到,点击导航栏的时候直接跳转到某个网站
xiyou - 2012/6/26 10:50:00
栏目管理里面有一个自定义url,直接填写网站url地址就可以,比如http://www.xxxx.com
zjkyxc - 2012/6/26 21:56:00
谢了,版主
zjkyxc - 2012/6/26 22:20:00
版主,是我没有说清楚。栏目管理中“首页”栏目,在“导航设置”里增加一个导航栏,让这个导航栏实现点击跳转到外部网址的功能。谢谢了。
zjkyxc - 2012/6/26 22:53:00
版主,还有一个问题,不管是提交多行文字,还是表格,还是图片,总是提示以下内容:

请版主明示。

Server Error in '/' Application.
--------------------------------------------------------------------------------

A potentially dangerous Request.Form value was detected from the client (Content="<p style="text-align...").
Description: Request Validation has detected a potentially dangerous client input value, and processing of the request has been aborted. This value may indicate an attempt to compromise the security of your application, such as a cross-site scripting attack. To allow pages to override application request validation settings, set the requestValidationMode attribute in the httpRuntime configuration section to requestValidationMode="2.0". Example: <httpRuntime requestValidationMode="2.0" />. After setting this value, you can then disable request validation by setting validateRequest="false" in the Page directive or in the <pages> configuration section. However, it is strongly recommended that your application explicitly check all inputs in this case. For more information, see http://go.microsoft.com/fwlink/?LinkId=153133.

Exception Details: System.Web.HttpRequestValidationException: A potentially dangerous Request.Form value was detected from the client (Content="<p style="text-align...").

Source Error:

The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:

1. Add a "Debug=true" directive at the top of the file that generated the error. Example:

  <%@ Page Language="C#" Debug="true" %>

or:

2) Add the following section to the configuration file of your application:

<configuration>
   <system.web>
       <compilation debug="true"/>
   </system.web>
</configuration>

Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.

Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.  

Stack Trace:


[HttpRequestValidationException (0x80004005): A potentially dangerous Request.Form value was detected from the client (Content="<p style="text-align...").]
   System.Web.HttpRequest.ValidateString(String value, String collectionKey, RequestValidationSource requestCollection) +8803572
   System.Web.HttpRequest.ValidateNameValueCollection(NameValueCollection nvc, RequestValidationSource requestCollection) +122
   System.Web.HttpRequest.get_Form() +114
   System.Web.HttpRequest.get_HasForm() +8973167
   System.Web.UI.Page.GetCollectionBasedOnMethod(Boolean dontReturnNull) +97
   System.Web.UI.Page.DeterminePostBackMode() +69
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +8431
   System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +253
   System.Web.UI.Page.ProcessRequest() +78
   System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context) +21
   System.Web.UI.Page.ProcessRequest(HttpContext context) +49
   ASP.master_information_2_aspx.ProcessRequest(HttpContext context) +4
   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +100
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +75
zjkyxc - 2012/6/26 22:57:00
版主在一些帖子说是“主机给的trust权限不够”

在asp.net的系统配置web.config文件里面修改
<trust level="Full" originUrl="" />


但是web.config文件里面并没有这条语句呀??
zjkyxc - 2012/6/26 23:29:00
按照版主所说,
打开:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config
找到</securityPolicy>这行的下面一行,改为<trust level="Full" originUrl="" />

level的值原来就为full,请问为什么还会出现问题??
1
查看完整版本: 导航栏超链接问题