C# 是创新性的新式编程语言

源代码在线查看: 传递多个参数的函数.txt

软件大小: 2604 K
上传用户: feiguohaihu
关键词: 创新 编程语言
下载地址: 免注册下载 普通下载 VIP

相关代码

				1.*.aspx
				
				
									function OpenJobBook(B90199,B001)
					{		
						window.showModalDialog('Frameset.asp?JGGL_Job.aspx?B90199='+B90199+'&B001='+B001,'','dialogHeight: 445px; dialogWidth: 569px;  edge: Raised; center: Yes; help: no; resizable: Yes; status: no;');
					}
				
				//-->
						
				
				
				
				
				2.*.aspx.cs
				private void BtnJob_Click(object sender, System.EventArgs e)
						{
							
								string strB90199="";	//当前选中的职位编码
								
								strB90199=this.TreeView1.SelectedDepCode;
										
								//********************************
								//葛利峰 2004-09-07 增加 填报单位
								string strB001=this.TreeView1.GetSelectedOrgan();//得到单位
				
								//打开窗口
								string strTemp="javascript:OpenJobBook('"+strB90199+"','"+strB001+"');";
								if(!this.IsClientScriptBlockRegistered("clientScript"))
									this.RegisterStartupScript("clientScript",strTemp);
				
							}
						}			

相关资源