最新评论

re: wss 备份与还原相关的站点 惠州市大帮手软件有限公司 2007-09-04 12:45  
从WSS3/SPS2007数据库中分离出保存的文件的程序
http://www.helpersoft.cn/prodtools.htm
re: wss 备份与还原相关的站点 随风而去 2007-07-27 12:19  
sharepoint 如果坏了解决方法 http://www.w3c-cn.com/article.asp?id=102
re: wss 备份与还原相关的站点 随风而去 2007-07-27 12:16  
krichie-fosqlp is the name of my SQL 2005 Principle Server.

krichie-fowfe1 is a web server running as a Web Front End.

adomain\SPService is my SharePoint farm account

adomain\SQLService is my SQL service account used by SharePoint

After installing, deselect the "Run the configuration wizard" check box and close, then jump to the BIN folder of the web server extensions path and run PSCONFIG such as follows:

psconfig -cmd configdb -create -server krichie-fosqlp -database krichie-fo-wss-configdb -user adomain\SPService -password "SPServicePassword" -admincontentdatabase krichie-fo-wss-admin-content -dbuser adomain\SQLService -dbpassword "SQLServicePassword"

This will run through the post setup configuration wizard and use the database names that I provide. Now my database names reflect the farm their associated with.

Also, don't forget to provision the admin site itself.

psconfig -cmd adminvs -provision

re: wss 备份与还原相关的站点 随风而去 2007-07-27 12:03  
Error message when you try to use the SharePoint Products and Technologies Wizard: "Exception: System.ArgumentException: Error during encryption or decryption"

http://support.microsoft.com/kb/927156/en-us
re: wss 备份与还原相关的站点 随风而去 2007-07-27 08:47  
当您尝试通过使用其他名称还原 Windows SharePoint Services 3.0 网站错误信息: " 无内容数据库可供操作 " http://support.microsoft.com/kb/926321/zh-cn
re: wss 备份与还原相关的站点 随风而去 2007-07-27 08:37  
如何移动 WMSDE 内容数据库 http://support.microsoft.com/kb/925190/zh-cn
只不过是不同的操作习惯罢了,现在vs2005的类模版更简略了,连构造函数都不给生成了,唉,ms越来越懒了
re: 常用的几个windows2003管理指令 随风而去[匿名] 2006-10-27 00:31  
图形图面转角色 regsvr32 schmmgmt
re: 常用的几个windows2003管理指令 随风而去[匿名] 2006-10-27 00:27  
域升级 Dcpromo /adv
re: sql 客户端显示乱码之解决方法 随风而去 2006-09-29 17:12  
where 语句后的乱码问题 Collate Chinese_PRC_Stroke_ci_as
webpart:[Personalizable][WebBrowseable]
实现了子站点目录结构显示,待处理数据传递至其它WEBpart
re: form设计器 随风而去 2006-08-17 12:22  
进展的还算顺利,没碰到什么技术难题,待处理的是用户自定义数据有效性检查问题,不知会不会碰到技术问题.
re: property grid 相关资料 随风而去 2006-08-09 23:40  
re: 特性(Attributes) 非原创 随风而去 2006-08-02 17:34  
private void button4_Click(object sender, EventArgs e)
{
CreateControl("System.Windows.Forms.TextBox", this, 100, 100);
}
public static void CreateControl(string controlType, Form form, int positionX, int positionY)
{


string assemblyQualifiedName = typeof(System.Windows.Forms.Form).AssemblyQualifiedName;

string assemblyInformation = assemblyQualifiedName.Substring(assemblyQualifiedName.IndexOf(","));

Type ty = Type.GetType(controlType + assemblyInformation);

Control newControl = (Control)System.Activator.CreateInstance(ty);

form.SuspendLayout();

newControl.Location = new System.Drawing.Point(positionX, positionY);

newControl.Name = ty.Name + form.Controls.Count.ToString();

form.Controls.Add(newControl);

form.ResumeLayout();

}
asp.net 中添加子节点又换了种方式
tv.Nodes[0].ChildNodes.Add(new TreeNode("name","name"))