摘要:
the .net framework beta 2 has many changes that will break applications written in beta 1. among these changes is the templates used in data server controls, such as the datagrid and datalist.......
摘要:
利用 .net 框架简化发布和解决 dll hell 问题
steven pratschner
microsoft corporation
2000年9月
摘要: 本文介绍汇编概念并说明 .net 框架如何使用汇编解决版本和发布问题。
目录
简介
问题叙述
解决方案的特性
汇编:积木
版本与共享
版本策略
发布
摘要
---------------......
如何使用数据查询的Parameters中的output属性取的返回值
public int addmessage(int moduleid, int fatherid, string username, string title, string body, string face) {
if (username.length < 1) {
username = "unknown";
}
// create instance of connection and command object
sqlconnection myconnection = new sqlconnection(configurationsettings.appsettings["connectionstring"]);
sqlcommand mycommand = new sqlcommand("up_posttopic", myconnection);
// mark the command as a sproc
mycommand.commandtype ...
下一页 摘要:
接上)
具体过程如下:
(1)首先建立数据库配置文件,我们在这里定为database.xml,当然也可以改成是其它名字。
<?xml version="1.0" encoding="gb2312"?>
<database name="customerdemo" engine="......