日期:2014-05-17 浏览次数:20475 次
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="sdg.aspx.cs" Inherits="SD.sdg" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<frameset rows="0,* " border=0, height=100% ,width=100% >
<frame name=top src="bgsound.htm" ></frame>
<frame name=main src='<%=name %>' </frame>
</frameset>
</html>
后台:namespace SD
{
public partial class sdg : System.Web.UI.Page
{
public static string name;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string name=Request.QueryString["name"];
}
}
}