我做了一个aspx页面,但为什么在VS.net里双击页面不到.cs的后台文件?

解决方案 »

  1.   

    假如该页面为index.aspx在该页面的<%@ Page .... %> 加入Codebehind="index.aspx.cs" 即可实现
      

  2.   

    是不是关联代码没有或错了?请对比以下这条语句:1
    <%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="WebApplication1.WebForm1" smartNavigation="True"%>
    Codebehind="这就是代码文件的名称"
    Inherits="这是代码文件中的名称空间"
      

  3.   

    我对了一下没错,我把aspx代码贴出来:
    <%@ Page CodeBehind="login.aspx.cs" Language="c#" AutoEventWireup="false" validateRequest="false" Inherits="epcglobal.admin.login" %>
    <HTML>
    <HEAD>
    <title>
    <% =System.Configuration.ConfigurationSettings.AppSettings["webAdminName"] %>
    </title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <link rel="stylesheet" href="/css/css.css">
    <style> <!-- .tb { border-right-width: 2px; border-left-width: 2px; border-right-style: solid; border-left-style: solid; border-right-color: #6FB9FF; border-left-color: #6FB9FF; }
    --></style>
    </HEAD>
    <body background="image/bg02.gif" leftmargin="0" topmargin="50" marginwidth="0" marginheight="0">
    <table width="80%" height="445" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <td background="img/submit_bg1.gif"><img src="img/spacer.gif" width="1" height="1"></td>
    <td width="670" height="10" background="img/submit_bg1.gif"><img src="img/spacer.gif" width="1" height="1"><img src="img/spacer.gif" width="1" height="1"></td>
    <td background="img/submit_bg1.gif"><img src="img/spacer.gif" width="1" height="1"></td>
    </tr>
    <tr>
    <td width="10" height="424" background="img/submit_bg1.gif"><img src="img/spacer.gif" width="1" height="1"></td>
    <td background="img/submit_bg1.gif">
    <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#ffffff" class="table-k">
    <tr>
    <td background="img/submit_7.gif"><img src="img/submit_7.gif" width="2" height="29"></td>
    </tr>
    <tr>
    <td height="382" align="center">
    <table width="90%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td height="23" align="center">&nbsp;</td>
    </tr>
    <tr>
    <td>&nbsp;</td>
    </tr>
    </table>
    <form id="Form1" method="post" runat="server">
    <table width="278" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <td><IMG SRC="img/login_11.gif" WIDTH="278" HEIGHT="24" ALT=""></td>
    </tr>
    <tr>
    <td><IMG SRC="img/login_14.gif" WIDTH="278" HEIGHT="86" ALT="" id="IMG1"></td>
    </tr>
    <tr>
    <td class="tb"><br>
    <table width="82%" border="0" align="center" cellpadding="2" cellspacing="0">
    <tr>
    <td height="25">用户名:</td>
    <td height="25">
    <input type="text" name="AdminName" maxlength="50"></td>
    </tr>
    <tr>
    <td height="25">密 码:</td>
    <td height="25">
    <input type="password" name="AdminPSW" maxlength="16"></td>
    </tr>
    <tr>
    <td height="34" colspan="3" align="center" valign="middle">
    <table width="90%" border="0" align="center" cellpadding="5" cellspacing="0">
    <tr align="center" valign="middle">
    <td><img SRC="img/login_19.gif" WIDTH="57" HEIGHT="24" ALT="登陆" id="submit" style="CURSOR: hand"
    runat="server">
    </td>
    <td><img SRC="img/login_21.gif" ALT="取消" border="0" WIDTH="58" HEIGHT="24" style="CURSOR: hand"
    id="reset" runat="server"></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td><IMG SRC="img/login_23.gif" WIDTH="278" HEIGHT="12" ALT=""></td>
    </tr>
    </table>
    <br>
    </form>
    </td>
    </tr>
    <tr>
    <td height="29" align="center" background="img/submit_bg2.gif" class="buttonface"><font color="#ffffff">中国物品编码中心 
    Copyright 2005(C)</font></td>
    </tr>
    </table>
    </td>
    <td width="10" background="img/submit_bg1.gif"><img src="img/spacer.gif" width="1" height="1"></td>
    </tr>
    <tr>
    <td background="img/submit_bg1.gif"><img src="img/spacer.gif" width="1" height="1"></td>
    <td height="10" background="img/submit_bg1.gif"><img src="img/spacer.gif" width="1" height="1"></td>
    <td background="img/submit_bg1.gif"><img src="img/spacer.gif" width="1" height="1"></td>
    </tr>
    </table>
    </body>
    </HTML>