VB.NET & Date.DaysInMonth() - Date.DaysInMonth() : Returns an Integer that represents the number of days in the calendar month of the international date.
ShotDev Focus:
- VB.NET & Date.DaysInMonth()
Example
DaysInMonth.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Session.LCID = 1033 Me.lblText1.Text = Date.DaysInMonth(2008, 11) End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form runat="server"> <asp:Label id="lblText1" runat="server"></asp:Label><br /> </form> </body> </html>
Screenshot
2watershed…
…