我很难在asp脚本中格式化整数
现在整数的格式是######。我想将其格式化为#### - ##。例如:格式201602至2016-02。谁可以帮我这个事?非常感谢!
<asp:DropDownList ID="From" runat="server" DataSourceID="ShipDate"DataTextField="intYearMonth"> <asp:ListItem Text="" Value="0"/> </asp:DropDownList>
答案 0 :(得分:0)
您可以在使用For Each
...
注意 - 此处没有错误检查您可能想要处理...
For Each item As ListItem In DropDownList1.Items
item.Text = item.Insert(4, "-")
Next
输出 - 2016-02