<form id="form1" runat="server"> <div style="height:100%;width:100%;position:absolute;"> <div id="TopLogo" style="height:35%;width:100%;"> <asp:Image ID="img" runat="server" Height="100%" Width="100%" ImageUrl="~/Image/Login/welcome.jpg" /> </div> <div id="navigate" style="height:5%;width:100%;"> <table class="auto-style1"> <tr> <td style="color:rgb(242,46,0)" class="auto-style2"> 你好,<strong><asp:Label ID="lblName" runat="server"></asp:Label></strong> ! </td> <td class="auto-style3"> <asp:HyperLink ID="LinkGoods" runat="server" Font-Bold="true" NavigateUrl="~/User/SelectGoods.aspx">商品页</asp:HyperLink> </td> <td class="auto-style4"> <asp:HyperLink ID="LinkHome" runat="server" Font-Bold="true" NavigateUrl="~/User/HomePage.aspx">个人首页</asp:HyperLink> </td> </tr> </table> </div> <br /><br /> <div id="wel" style="text-align:center;"> 欢迎光临购物商城! </div> </div> </form>
时间: 2024-01-03 13:06:39 浏览: 287
ASPX (VB) 下拉框(含搜索)样式表
这是一个 ASP.NET Web Form 页面的源代码,展示了一个具有欢迎信息、导航链接和个人信息的页面布局。页面分为三部分:页面顶部的商城 Logo,导航栏,以及欢迎信息。导航栏中有两个链接,一个是指向商品页的超链接,另一个是指向个人首页的超链接。在欢迎信息中,会根据用户登录信息来显示用户的姓名。
阅读全文