-
WinForm中的水晶报表
摘要:WinForm中的水晶报表:1:在窗体上加一个crystalReportViewer;2:添加一个新的DataSet.xsd文件3DataSet.xsd设计并添加表;4添加一个CrystalReport 并指定相应的DataSet.xsd文件。3:在Form的Load()事件中:[代码]
阅读全文
-
Asp.Net中前台Javascript与C#函数相互调方法
摘要:[代码]1.如何在JavaScript访问C#函数?2.如何在JavaScript访问C#变量?3.如何在C#中访问JavaScript的已有变量?4.如何在C#中访问JavaScript函数?问题1答案如下:方法一:1、首先建立一个按钮,在后台将调用或处理的内容写入button_click中;2、在前台写一个js函数,内容为document.getElementById("btn1").clic...
阅读全文
-
oracle不支持关键字Top
摘要:roadName info time如果roadName不具有具有主键约束,并且还想查询一条road的信息的话是比较困难的··oracle不支持关键字··但是支持rownum关键字。可以采用以下方法select * from (select * from road where road = 'XX' order by time desc ) where ro...
阅读全文
-
手动写GridView的RowEditing RowCancelingEdit RowUpdating RowDeleting 事件 和 删除 出现提示
摘要:先定一个绑定的方法[代码][代码][代码][代码][代码]
阅读全文
-
JS取得RadioButtonList的Value,Text及选中值等信息
摘要:function fn_GetRadioButtonListInfo() { //取得RadioButtonList的集合 var radListItems = document.all("RadioButtonList1"); if(radListItems==null) { alert("...
阅读全文
-
javaScript判断iframe状态
摘要:if(document.getElementById("iframeID").readyState =="complete" ) { //调用需要的方法 iframeID.setLayerToShow(); } else { alert('请稍后,系统正在加载!'); }
阅读全文
|