我再.net中创建了一个新的web应用程序,我再web窗体控件中拖了几个控件在网页中,,但是一运行什么都没有,,我像知道为什么????谁能告诉我,,我是初学者,,关照,谢谢

解决方案 »

  1.   

    我拖的是button textbox,,为什么显示不出来,如何才能显示出来呢
      

  2.   

    把你的代码贴出来或者你再新建一个web窗体 再试一下
      

  3.   

    using System;
    using System.Collections;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Web;
    using System.Web.SessionState;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.HtmlControls;namespace WebApplication2
    {
    /// <summary>
    /// WebForm1 的摘要说明。
    /// </summary>
    public class WebForm1 : System.Web.UI.Page
    {
    protected System.Web.UI.WebControls.Button Button1;
    protected System.Web.UI.WebControls.TextBox TextBox1;
    protected System.Web.UI.WebControls.Label Label1;
    protected System.Web.UI.WebControls.Label Label2;
    protected System.Web.UI.WebControls.TextBox TextBox2;

    private void Page_Load(object sender, System.EventArgs e)
    {          // 在此处放置用户代码以初始化页面

    } #region Web 窗体设计器生成的代码
    override protected void OnInit(EventArgs e)
    {
    //
    // CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
    //
    InitializeComponent();
    base.OnInit(e);
    }

    /// <summary>
    /// 设计器支持所需的方法 - 不要使用代码编辑器修改
    /// 此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {    
    this.Button1.Click += new System.EventHandler(this.Button1_Click);
    this.Load += new System.EventHandler(this.Page_Load); }
    #endregion private void Button1_Click(object sender, System.EventArgs e)
    {
    string  url;  
    url="webform2.aspx?name="  +    
    TextBox1.Text  +  "&email="  +    
    TextBox2.Text;  
    Response.Redirect(url);  
    }
    }
    }
      

  4.   

    <%@ Page language="c#" Codebehind="WebForm1.aspx.cs" AutoEventWireup="false" Inherits="WebApplication2.WebForm1" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
    <HTML>
    <HEAD>
    <title>WebForm1</title>
    <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
    <meta content="C#" name="CODE_LANGUAGE">
    <meta content="JavaScript" name="vs_defaultClientScript">
    <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
    </HEAD>
    <body MS_POSITIONING="GridLayout">
    <form id="Form1" method="post" runat="server">
    <asp:button id="Button1" style="Z-INDEX: 101; LEFT: 288px; POSITION: absolute; TOP: 248px" runat="server"
    Text="确定" Width="88px"></asp:button><asp:label id="Label2" style="Z-INDEX: 105; LEFT: 168px; POSITION: absolute; TOP: 176px" runat="server"
    Width="72px">密码</asp:label><asp:label id="Label1" style="Z-INDEX: 104; LEFT: 168px; POSITION: absolute; TOP: 144px" runat="server"
    Width="72px">姓名</asp:label><asp:textbox id="TextBox2" style="Z-INDEX: 103; LEFT: 272px; POSITION: absolute; TOP: 176px"
    runat="server"></asp:textbox><asp:textbox id="TextBox1" style="Z-INDEX: 102; LEFT: 272px; POSITION: absolute; TOP: 136px"
    runat="server"></asp:textbox></form>
    </body>
    </HTML>
      

  5.   

    再问一句,你是怎么运行的? 具体一点,是出空白页还是没有web页出来?
      

  6.   

    我像问一下   代码 <asp:button id="Button1" style="Z-INDEX: 101; LEFT: 288px; POSITION: absolute; TOP: 248px" runat="server"
    Text="确定" Width="88px"></asp:button〉     
    中的   “ POSITION: absolute;“”是什么意思,我吧她去掉就可以了,,为什么???
      

  7.   

    我拖动的控件不想带这个代码  POSITION: absolute;怎么设置呀
      

  8.   

    POSITION: absolute;是层一般的定位功能.
      

  9.   

    POSITION: absolute;去掉就可以运行出来了
    我也遇到到
      

  10.   

    dreambecool(梦想成真) :不是不能去掉,除非你不需要控件定位