2020年6月30日 星期二

Views

Bootstrap4

1.參考好文:

https://pjchender.blogspot.com/2015/04/bootstraptabsnavigation-bar.html


2020年6月16日 星期二

Views

ASP.NET 搭配Jquery

以WebForm設計模式

1.<asp:Button id="btn" Text="Click" runat="server"/>
如果要用Jquery抓取id

console.log('#'+'<%= btn.ClientID%>')

2.前端<asp:Literal id="Literal" runat="server"/>
  後端Literal.Text="<div id='name'>Hello</div>";
  如果要用Jquery抓取<div>內容,並用console印出來,是html()


 <script>
     $(function(){
         var div=$("#name").html();
         console.log(div);
     });
 </script>
  心得:可由後端組出html字串,再由前端寫jquery去操作!

2020年6月11日 星期四

Views

ASP.NET 控制項使用

1.TextBox

前端寫法
<asp id="txt1" runat="server" style="display: none;"></asp>

後端針對css操作
(1)刪除屬性 txt1.Stlye.Clear();
(2)增加屬性 txt1.Stlye["background"]="yellow";
txt1.Attributes.Add("style","font-size:xx-small";color:#666666);