c# builder开发指南

dwxdzx 2003-09-04 09:50:37
版主提供以下用C#builder开发asp.net的具体步骤好吗,最好用简单的实例讲解一下,不要用hello word讲
...全文
35 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
zhongjin 2003-09-17
  • 打赏
  • 举报
回复
建议用VS.NET2003的VC#
waterinmoon 2003-09-14
  • 打赏
  • 举报
回复
up
younker 2003-09-08
  • 打赏
  • 举报
回复
This is a web service application, I think the ASP.NET program is same as you develop winforms program, use web forms control to replace win forms control.
you can read the document come with C# builder.
CBJ2049011 2003-09-04
  • 打赏
  • 举报
回复
返回dataset的
[WebMethod]
public System.Data.DataSet getDateSet(string ConnectionStr,string RunSQL,string TableName)
{
System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection(ConnectionStr);
conn.Open();
System.Data.SqlClient.SqlDataAdapter sda = new System.Data.SqlClient.SqlDataAdapter(RunSQL,conn);
System.Data.DataSet ds = new System.Data.DataSet();
sda.Fill(ds,TableName);
conn.Close();
return ds;
}

1,979

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 其他语言讨论
社区管理员
  • 其他语言社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧