| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 782 人关注过本帖
标题:[求助]用c#语言在VS做的一个WEB窗体没有任何事件怎么调试不出来呢?
只看楼主 加入收藏
wzx4605
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-5-23
收藏
 问题点数:0 回复次数:4 
[求助]用c#语言在VS做的一个WEB窗体没有任何事件怎么调试不出来呢?

哪位大侠帮忙看下,下面的程序,为什么不能调试出来呢?,这个是在VS里面添加的几个控件、层和表格,还没有添加事件,为什么调试的时候在IE里面始终显示不出来呢?


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<!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" id="mainpage">
<title>无标题页</title>
<script language="javascript" type="text/javascript">
function TABLE2_onclick() {

}

function DIV3_onclick() {

}

</script>
</head>
<body style="background-image: url(image/main.jpg)">
<form id="form1" runat="server">
<div>
<table frame="above" rules="all" style="width: 791px; height: 390px; text-align: center" id="TABLE2" onclick="return TABLE2_onclick()">
<tr>
<td colspan="3" style="background-image: url(image/logo1.jpg); height: 32px">
<div id="DIV1" style="z-index: 103; left: 70px; width: 131px; position: absolute;
top: 41px; height: 19px; text-align: left;" onclick="return DIV1_onclick()">
<span style="color: #0071d9; font-style: normal"><strong>武汉科技学院</strong></span></div>
</td>
</tr>
<tr>
<td style="width: 13px; height: 110px; text-align: left">
<div style="z-index: 101; left: 16px; width: 83px; position: absolute; top: 106px;
height: 10px; text-align: center">
<span style="color: #84009d; text-decoration: underline"><strong>公告栏</strong></span></div>
</td>
<td style="width: 13px; height: 110px">
<div style="z-index: 102; left: 109px; width: 96px; position: absolute; top: 106px;
height: 14px">
<span style="color: #ae0196; text-decoration: underline"><strong>任务栏</strong></span></div>
</td>
<td style="width: 99px; height: 110px; text-align: center;" valign="middle">
<div style="z-index: 104; left: 213px; width: 181px; position: absolute; top: 104px;
height: 99px" id="DIV2" onclick="return DIV2_onclick()">
<table id="TABLE1" style="width: 587px; height: 299px" onclick="return TABLE1_onclick()">
<tr>
<td style="width: 99px; height: 1px; text-align: left;">
<span style="color: #ff3333">最新消息</span>
</td>
</tr>
<tr>
<td style="width: 99px; height: 51px; color: #cc0000; text-align: left;">
消息显示栏:<br />
(数据绑定)<br />
<span style="text-decoration: underline"></span>
</td>
</tr>
<tr>
<td style="width: 99px; height: 203px;">
<div style="z-index: 101; left: 0px; width: 584px; position: absolute; top: 82px;
height: 16px; text-align: left" id="DIV3" onclick="return DIV3_onclick()">
<span style="color: #ff0000">控制面板</span></div>
<div style="z-index: 102; left: 237px; width: 100px; position: absolute; top: 118px;
height: 100px; color: #ffffff; text-decoration: underline;">
<asp:ImageButton ID="ImageButton3" runat="server" Height="63px" Style="background-image: url(image/contact.jpg)"
Width="66px" /><br />
用户管理</div>
<div style="z-index: 102; left: 121px; width: 100px; position: absolute; top: 119px;
height: 100px">
<asp:ImageButton ID="ImageButton2" runat="server" Height="62px" Style="background-image: url(image/sms.jpg)"
Width="76px" /><br />
<span style="color: #ffffff; text-decoration: underline">短信服务</span></div>
<div style="z-index: 102; left: 9px; width: 100px; position: absolute; top: 117px;
height: 100px; color: #0066ff;">
<asp:ImageButton ID="ImageButton1" runat="server" Height="64px" Style="background-image: url(image/task.jpg)"
Width="60px" /><br />
<span style="color: #ffffff; text-decoration: underline">任务管理</span></div>
<div style="z-index: 102; left: 346px; width: 100px; position: absolute; top: 119px;
height: 100px; color: #ffffff; text-decoration: underline;">
<asp:ImageButton ID="ImageButton4" runat="server" Height="64px" Style="background-image: url(image/calendar.jpg)"
Width="70px" /><br />
日程管理</div>
<div style="z-index: 102; left: 455px; width: 100px; position: absolute; top: 120px;
height: 100px; color: #ffffff; text-decoration: underline;">
<asp:ImageButton ID="ImageButton5" runat="server" Height="61px" OnClick="ImageButton5_Click"
Style="background-image: url(image/pwdreset1.jpg)" Width="68px" /><br />
密码服务</div>
</td>
</tr>
<tr>
<td style="width: 99px; height: 26px">
</td>
</tr>
</table>
</div>
&nbsp;&nbsp;
</td>
</tr>
<tr>
<td style="height: 12px" colspan="3">
</td>
</tr>
</table>

</div>
</form>
</body>
</html>

搜索更多相关主题的帖子: WEB 语言 窗体 DTD 
2007-05-23 15:08
tel1982
Rank: 3Rank: 3
来 自:水星
等 级:新手上路
威 望:8
帖 子:852
专家分:0
注 册:2006-10-21
收藏
得分:0 
你的这些代码是从DW里面粘贴过来的吗?

Face up to life with smiles no matter what happens
2007-05-23 22:21
wzx4605
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-5-23
收藏
得分:0 

这些代码是我在VS上做的一个简单的WEB窗体的源文件!用的C#语言写的

2007-05-24 09:50
bygg
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:乖乖的心中
等 级:版主
威 望:241
帖 子:13555
专家分:3076
注 册:2006-10-23
收藏
得分:0 
你在设计窗口可以看到控件吗?

飘过~~
2007-05-24 09:53
wzx4605
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-5-23
收藏
得分:0 
回复:(wzx4605)这些代码是我在VS上做的一个简单的W...

在编辑界面可以看到控件的!但是运行,调试或者在浏览器中打开的时候,就始终显示不出来!而且就算浏览进度条满的,还是没办法显示!

2007-05-27 18:35
快速回复:[求助]用c#语言在VS做的一个WEB窗体没有任何事件怎么调试不出来呢?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.029245 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved