4个回答
2013-09-18
展开全部
这篇文章主要展示了你制作一个Silverlight 2.0的自定义空间需要哪些步骤和在你的Silverlight
2013-09-18
展开全部
首先是后台给前台设置Style属性,设置控件坐标
前台控件:
Html代码
<asp:Label ID = "lblDSRText" Text = "当事人" runat = "server" name="label" Style="left: 300px; position: absolute;top:200px" BackColor="silver" ></asp:Label>
<asp:Label ID = "lblDSRText" Text = "当事人" runat = "server" name="label" Style="left: 300px; position: absolute;top:200px" BackColor="silver" ></asp:Label>
后台代码:
C#代码
Response.Write(lblDSRText.Style["top"] );//获得Style中top的值,获得值可以这样获得,给前台控件赋值时要用Style["Style"]
lblDSRText.Style["Style"] = "left: 500px; position: absolute;top:400px";//设置lblDSRText控件的样式
Response.Write(lblDSRText.Style["top"] );//获得Style中top的值,获得值可以这样获得,给前台控件赋值时要用Style["Style"]
lblDSRText.Style["Style"] = "left: 500px; position: absolute;top:400px";//设置lblDSRText控件的样式
前台控件:
Html代码
<asp:Label ID = "lblDSRText" Text = "当事人" runat = "server" name="label" Style="left: 300px; position: absolute;top:200px" BackColor="silver" ></asp:Label>
<asp:Label ID = "lblDSRText" Text = "当事人" runat = "server" name="label" Style="left: 300px; position: absolute;top:200px" BackColor="silver" ></asp:Label>
后台代码:
C#代码
Response.Write(lblDSRText.Style["top"] );//获得Style中top的值,获得值可以这样获得,给前台控件赋值时要用Style["Style"]
lblDSRText.Style["Style"] = "left: 500px; position: absolute;top:400px";//设置lblDSRText控件的样式
Response.Write(lblDSRText.Style["top"] );//获得Style中top的值,获得值可以这样获得,给前台控件赋值时要用Style["Style"]
lblDSRText.Style["Style"] = "left: 500px; position: absolute;top:400px";//设置lblDSRText控件的样式
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-18
展开全部
有这么复杂吗?我的方法很简单而且有效
<div class="<%=GetStrCss() %>">
<%=GetStrCss() %>是后台C#代码从数据库中提取出来的。
protected string GetStrCss()
{
TBigType ta= new TBigType();
if (ta.QueryByID(this.CurrentID))
{
return ta.urlcss;
}
else
{
return "";
}
}
<div class="<%=GetStrCss() %>">
<%=GetStrCss() %>是后台C#代码从数据库中提取出来的。
protected string GetStrCss()
{
TBigType ta= new TBigType();
if (ta.QueryByID(this.CurrentID))
{
return ta.urlcss;
}
else
{
return "";
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-18
展开全部
<script>
function css(cs)
{ie5menu.className=cs;<br/>}
</script>
<title>New Page 1</title>
<style>
<!--
.aa { background-color: #0979C4; color: #FFFFFF; font-family: Tahoma; font-size: 9pt;
border: 5 solid #FF0000 }
.bb { background-color: #6699cc; color: yellow; font-family: Tahoma; font-size: 9pt;
border: 5 solid #FFFF00 }
-->
</style>
<body>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="100">
<tr>
<td onclick=css("aa") style="cursor:hand" align="center">css=aa</td>
</tr>
<tr>
<td onclick=css("bb") style="cursor:hand" align="center">css=bb</td>
</tr>
</table>
</center>
</div>
<p> </p>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="211" height="209">
<tr>
<td height="209" width="209" id=ie5menu>
<p align="center">点击上面的AA BB</td>
</tr>
</table>
</center>
</div>
</body>
function css(cs)
{ie5menu.className=cs;<br/>}
</script>
<title>New Page 1</title>
<style>
<!--
.aa { background-color: #0979C4; color: #FFFFFF; font-family: Tahoma; font-size: 9pt;
border: 5 solid #FF0000 }
.bb { background-color: #6699cc; color: yellow; font-family: Tahoma; font-size: 9pt;
border: 5 solid #FFFF00 }
-->
</style>
<body>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="100">
<tr>
<td onclick=css("aa") style="cursor:hand" align="center">css=aa</td>
</tr>
<tr>
<td onclick=css("bb") style="cursor:hand" align="center">css=bb</td>
</tr>
</table>
</center>
</div>
<p> </p>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="211" height="209">
<tr>
<td height="209" width="209" id=ie5menu>
<p align="center">点击上面的AA BB</td>
</tr>
</table>
</center>
</div>
</body>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询