首页 Soft PlugIn RAN乱 Dev开发 Info资料 English WAP 留言 登陆 注册
-
Posted by Yippee | 评论(0) | 引用(1) | 阅读2754次
个人开发集成--调研1

今天开始设想了一下软件,第一步是B/S和C/S程序结构;第二步是CVS/SUBVERSION

1、关于B/S结构还是C/S结构,这是一个问题,从发展的角度来说,目前C/S结构对我基本尔尔,期待了解的是B/S结构,但是目前我希望实现的软件比较涉及到操作交互的问题,这样的话操作就比较麻烦,而且通过最近两周的ASP.NET学习,发现实在很难做到代码和界面分离。而且这个设想的软件需要后台运行一些程序,这样又涉及到运行速度和效率的问题。最终还是决定使用C/S结构。

2、决定使用SUBVERSION

http://tortoisesvn.tigris.org/  tortoisesvn TortoiseSVN is a Subversion client, implemented as a windows shell extension. The coolest Interface to (Sub)Version Control.
http://subversion.tigris.org/  subversion  The goal of the Subversion project is to build a version control system that is a compelling replacement for CVS in the open source community.
http://websvn.tigris.org/  websvn WebSVN offers a view onto your subversion repositories that's been designed to reflect the Subversion methodology.

3、WebBrowser Control Mshtml.dll SHDocVw.dll is the component that performs the HTML parsing and rendering in Internet Explorer 4.0 and later, and it also exposes the HTML document through the Dynamic HTML Object Model. This component hosts the scripting engines, Microsoft virtual machine, ActiveX Controls, plug-ins, and other objects that might be referenced in the loaded HTML document. Mshtml.dll implements the Active Document server interfaces, which allows it to be hosted using standard Component Object Model (COM) interfaces. http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/browser_control_node_entry.asp

4、http://msdn.microsoft.com/archive/default.asp?url=/archive/en-us/dnaredcom/html/cncpt.asp  A Component You Can Use F:\Program Files\Common Files\Microsoft Shared\Triedit dhtmled.ocx
The Microsoft Dynamic HTML (DHTML) Editing Component allows Web authors and application developers to add WYSIWYG DHTML editing capabilities to their Web sites and applications. The editing component uses Microsoft's Component Object Model (COM) technology to provide access to editing services such as basic HTML formatting, tables, undo and redo, and absolute positioning.

PHP的命令管道重定向:popen--打开进程文件指针
resource popen ( string command, string mode )
打开一个指向进程的管道,该进程由派生给定的 command 命令执行而产生。
返回一个和 fopen() 所返回的相同的文件指针,只不过它是单向的(只能用于读或写)并且必须用 pclose() 来关闭。此指针可以用于 fgets(),fgetss() 和 fputs()。
如果出错返回 FALSE。
注: 如果需要双向支持,使用 proc_open()。
例子 1. popen() 例子
$handle = popen ("/bin/ls", "r");
?> 
注: 如果未找到要执行的命令,会返回一个合法的资源。这看上去很怪,但有道理。它允许你访问 shell 返回的任何错误信息:
error_reporting(E_ALL);
/* 加入重定向以得到标准错误输出 stderr。 */
$handle = popen('/path/to/spooge 2>&1', 'r');
echo "'$handle'; " . gettype($handle) . "\n";
$read = fread($handle, 2096);
echo $read;
pclose($handle);
?> 


字体:

Permanant URI永久地址 http://www.shengfang.org/blog/p/persondev1begin1.php
Trackback URI引用地址 http://www.shengfang.org/blog/tb.php?tb_id=1121070389

2005年7月11日16:26星期一  [Dev开发] 追踪此文的RSS
提示:
此文还没有评论。

称呼:    登陆   注册
   不注册,但记住我的信息
邮件:
(非必须)
评论: [UBB代码帮助]
粗体 斜体 下划线 链接 水平线 引用



验证码: 请输入你看见的数字
关闭UBB      提交时自动将内容复制到剪贴板

公告





统计信息
[Yippee]||[统计]||日志:2143
在线: 9||用户: 2635 [列表]
今日:738||到访:3654523
Rss:||评论:1668

最新日志

最新评论

友情链接

日历
342009 - 0734
   1234
567891011
12131415161718
19202122232425
262728293031 

最新引用
搜索

归档

杂项
Get RSS Feed (Version 2.0)
Get Atom Feed (Version 0.3)
编码:  UTF-8