摘要:
WinFormforeach (Control control in this.Controls) { if (control is TextBox) { (control as TextBox).Text = "Hello World."; }}ASP.NETforeach (Control control in this.FindControl("form1").Controls) { if ... 阅读全文
posted @ 2008-09-11 10:24
Alan Cai
阅读(489)评论(0)推荐(0)
编辑
摘要:
今天忙了一天就为了把大小在1.5-2.0m的图片上传到Oracle数据库,用C#+winform写了个程序,在服务器端运行,把上传的图片保存到oracle数据库里面。以前没用过oracle,现在项目急需,只能边学边写,把网上所有的例子和源代码都用遍了,还没有调通,希望哪位高手指点一下,谢谢。已经找到解决方案:How to pass a BLOB as a parameter to an Oracle package by using the .NET Managed Provider for Oracle,测试可以正常上传图片数据,有需要的朋友可以看看。 阅读全文
posted @ 2007-06-04 21:43
Alan Cai
阅读(2432)评论(1)推荐(0)
编辑