Kennyshu's blogspot
.Net programming notes
2018/05/08
Redirect the parent window when inside a frame
›
One of my project it's website has a frameset setting like the following: <frameset border="0" frameborder="NO" ...
2015/08/11
Add Tooltip to Html helpers
›
Use the "title" attribute to the html helper. For example: @Html.CheckBoxFor(m => m.ForTest, new { title = "測試" })
2015/08/10
Apply Enum onto @Html.DropDownListFor
›
enum GenderType { male, femail, others } @Html.DropDownListFor(model => model.Gender, new SelectList(Enum.GetValues(typeof(Ge...
@Html.LabelFor /wo newline
›
Here is how to prevent @Html.LabelFor from rendering a new line: @Html.LabelFor(m => m.Title, new { style = "display:inline" }...
2013/10/02
[C#] Customize the delimiter of CSV when loading it by using Excel.Workbook.Open() (VBA)
›
I got an old program which can load a csv file and do something. The customer wants to change the delimiter from comma (,) to others like ...
1 comment:
›
Home
View web version