“应用程序中发生了无法处理的异常” 试过其他百度知道中的方法重新安装Microsoft.NET Framework都不行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了“应用程序中发生了无法处理的异常” 试过其他百度知道中的方法重新安装Microsoft.NET Framework都不行相关的知识,希望对你有一定的参考价值。

“应用程序中发生了无法处理的异常” 试过其他百度知道中的方法重新安装、升级Microsoft.NET Framework都不行 应该也不是杀毒的问题

有关调用实时(JIT)调试而不是此对话框的详细信息,
请参见此消息的结尾。

************** 异常文本 **************
System.ServiceModel.EndpointNotFoundException: 没有终结点在侦听可以接受消息的 net.pipe://localhost/VAIOCare/VCAgent/VCSettingMgr。这通常是由于不正确的地址或者 SOAP 操作导致的。如果存在此情况,请参阅 InnerException 以了解详细信息。 ---> System.IO.PipeException: 在本地计算机上找不到管道终结点“net.pipe://localhost/VAIOCare/VCAgent/VCSettingMgr”。
--- 内部异常堆栈跟踪的结尾 ---

Server stack trace:
在 System.ServiceModel.Channels.PipeConnectionInitiator.GetPipeName(Uri uri)
在 System.ServiceModel.Channels.NamedPipeConnectionPoolRegistry.NamedPipeConnectionPool.GetPoolKey(EndpointAddress address, Uri via)
在 System.ServiceModel.Channels.CommunicationPool`2.TakeConnection(EndpointAddress address, Uri via, TimeSpan timeout, TKey& key)
在 System.ServiceModel.Channels.ConnectionPoolHelper.EstablishConnection(TimeSpan timeout)
在 System.ServiceModel.Channels.ClientFramingDuplexSessionChannel.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.ServiceChannel.OnOpen(TimeSpan timeout)
在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
在 System.ServiceModel.Channels.ServiceChannel.CallOnceManager.CallOnce(TimeSpan timeout, CallOnceManager cascade)
在 System.ServiceModel.Channels.ServiceChannel.EnsureOpened(TimeSpan timeout)
在 System.ServiceModel.Channels.ServiceChannel.Call(String action, Boolean oneway, ProxyOperationRuntime operation, Object[] ins, Object[] outs, TimeSpan timeout)
在 System.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
在 System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)

Exception rethrown at [0]:
在 System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
在 System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
在 VCsystray.VCSettingMgrService.IVCSettingMgr.IsEulaAccepted()
在 VCsystray.VCSettingMgrService.VCSettingMgrClient.IsEulaAccepted()
在 VCsystray.Form1.Form1_Load(Object sender, EventArgs e)
在 System.Windows.Forms.Form.OnLoad(EventArgs e)
在 System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
在 System.Windows.Forms.Control.CreateControl()
在 System.Windows.Forms.Control.WmShowWindow(Message& m)
在 System.Windows.Forms.Control.WndProc(Message& m)
在 VCsystray.Form1.WndProc(Message& m)
在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
在 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

参考技术A 安装新版本时系统内以前版本的残留文件没有清理干净。建议:从控制面板卸载所有的net版本,用安全卫士“电脑清理”后,再安装新版本。

网站如何集成百度UEditor编辑器

在平时的网站维护使用过程中,富文本编辑器是网站必不可少的元素之一。现在市面上各种编辑器功能设计参差不齐,自己做了几个网站都是用蝉知建站系统做的,而蝉知默认内置的编辑器是KindEditor,功能简单,已经满足不了我的需求了,比如多图上传、视频发布、代码高亮等功能。

 

所以想换个编辑器,听说百度的UEditro还不错,所以就打算把UEditor集成到蝉知系统中。操作也不是很麻烦,下面分享下过程,考虑到大家通用性,设计蝉知系统的改动我就不过多讲解了,这里主要分享在网站中集成UEditor的主要流程。

 

首先去百度UEditor官网(http://ueditor.baidu.com/website/)下载适用自己网站程序的最新UEditor。解压将文件夹放到网站自定义目录下,下面我以根目录为例,具体目录自行调整。

 

找到内容编辑、创建的页面文件,引入下面代码(注意调整路径):

<script type="text/javascript" src="ueditor.config.js"></script>
<script type="text/javascript" src="ueditor.all.js"></script>

内容编辑处添加下面代码:

<script id="container" name="content" type="text/plain">
        内容
    </script>
    <script type="text/javascript">
        var ue = UE.getEditor(container);
    </script>

itor()参数里大家可以根据自己情况进行配置。

 

如果要使用代码高亮功能,可以在前台内容展示页面文件中引入下面代码即可:

<script type="text/javascript" src="/ueditor/third-party/SyntaxHighlighter/shCore.js"></script>
<link rel="stylesheet" type="text/css" href="/ueditor/third-party/SyntaxHighlighter/shCoreDefault.css">
<script>
SyntaxHighlighter.all();
</script>

整体流程非常简单,剩下的就是根据自己的具体需求,配置一些参数了,最后秀一下最终效果图。

后台文章内容编辑:

技术分享

 

代码高亮:

技术分享

 

 

技术分享

以上是关于“应用程序中发生了无法处理的异常” 试过其他百度知道中的方法重新安装Microsoft.NET Framework都不行的主要内容,如果未能解决你的问题,请参考以下文章

Microsoft.Net Framework的问题、求高手解决、重装系统出现的问题、求解决、如果让我重装的就表回答了。

为啥用ip不可以访问知乎,而百度却可以?

解决百度云大文件不能被其他下载器下载

百度地图开发_离线

[2016-02-18][通过wiz为知笔记给博客园发博客]

网站如何集成百度UEditor编辑器