最近登录的好友
查看全部

共 1 个好友

迷你博客

共0篇迷你博客

最新帖子

共0 条帖子

M@rK(dmarkplus)在线状态 8天前

社区头衔:
专家排行榜
社区生日:
2007-10-20 |生日:1999-11-05
所在城市:
技术专长:
2005,Server,SQL,2000,Server,SQL,Report,Crystal,ASP.NET
开发工具:
兴趣爱好:
个人简介:
A bird in the hand is worth two in the bush;

Live and let live,Love finds a way.
所在行业:
所在公司:
 
(仅好友可见)
联系方式:
(仅好友可见)
 
编辑我的资料
人气:
[人气排行榜] 共 3536 人访问 / 查看详细
专家分:
[专家分排行榜] 共 557 分 / 查看详细
可用分:
[可用分排行榜] 共 784 分
所获勋章:
留言
查看全部

共 5 条留言

liujames 2008-07-16

你好,我是刚刚注册的,想问一下,我在下载资源FCKeditor.Net_2.5 ,下了好多遍,都下载不了,怎么办??除了csdn,是不是别的地方也有下载啊。

M@rK 回复于 2008-07-17

你可以去sourceforget下载:<br />http://nchc.dl.sourceforge.net/sourceforge/fckeditor/FCKeditor.Net_2.5.zip

吕建峰 2008-06-06

怎么不可以哪!<br/>你用的是那种软件?<br/>有点不对劲

M@rK 回复于 2008-06-09

oh? 你是指什么不可以? -_-!我糊都了。

陈郴 2008-03-21

<a href='Http://hi.csdn.net/dmarkplus/profile/notebook/1.html' target='_blank'>你好,最近在做一个项目遇到了一点困难,一直解决不了,麻烦帮我看一下吧,谢谢了<br/>问题:我用一个函数打开附件,如word、excel等,但打开后文件名字在word中的标题栏里总是出现乱码,而且如果乱码长度太长的话就打不开文件,所以在下面判断切短了文件名,方可以打开,函数如下<br/> public string PushFile(string FilePathName)<br/>    {<br/>        if (!File.Exists(FilePathName))<br/>            return "未找到文件,可能文件已经丢失!";<br/><br/>        try<br/>        {<br/>            <br/>            FileInfo file = new FileInfo(FilePathName);<br/>            HttpContext.Current.Response.Clear();<br/>            HttpContext.Current.Response.Charset = "GB2312";<br/>            HttpContext.Current.Response.ContentEncoding = System.Text.Encoding.UTF8;<br/>            string Type = file.Name.Substring(file.Name.LastIndexOf(".") + 1);<br/>            string fileCode=HttpUtility.UrlEncode(file.Name, System.Text.Encoding.UTF8).ToString();<br/>            if(fileCode.Length>100)//该地方为切断文件名字<br/>            fileCode = fileCode.Substring(0, 100) + "." + Type;<br/>            HttpContext.Current.Response.AddHeader("Content-Disposition", "attachment;   filename=" + fileCode);<br/>            HttpContext.Current.Response.AddHeader("Content-Length", file.Length.ToString());<br/>            HttpContext.Current.Response.ContentType = GetContentType(Type);<br/>            HttpContext.Current.Response.WriteFile(file.FullName);<br/>            HttpContext.Current.Response.End();<br/>            return "1";<br/>        }<br/>        catch (Exception ex)<br/>        {<br/>            return "打开文件失败" + ex.ToString();<br/>        }<br/>    }<br/>请帮忙解决此问题,感激不尽!</a>

M@rK 回复于 2008-03-22

<a href='Http://hi.csdn.net/dmarkplus/profile/notebook/1.html' target='_blank'>乱码大多是encode的问题,你的throw exception 写的什么?</a>

刘磊 2008-01-29

 目前正在用vb+sql开发一套HIS系统 在打印预览及排版方面感觉力不从心 老大您有何好的建议 希望多交流交流

M@rK 回复于 2008-03-04

你用的是那种reporting tool 呀?

古月 2007-12-09

正打算做一套DBMS系统,手头上已经有一个做好的,但是动态内存处理不当,程序运行过程中常常出现问题,不知前辈对这个问题有何指教?用的是vc6.0和sql server开发的,有点想用vs2007和Oracle重新做过一套,不知这样好不好?你对我的开发工具有什么别的意见么?<br/>迷茫中,望指点迷津.....

M@rK 回复于 2007-12-10

看你的系统需要或你的自己以后的发展方向。个人觉得.net framework 和sql server都是microsoft,所以支持的会好些吧。如果以后你的dababase size 很大(>100G),那就选Oracle吧。