With this asp vbscript function you can find the first and last day of a month. It is a very fast function that will work in your database filtering operations.
Sample : <%=ilkgun(date)%> <%=songun(date)%>
<%
Function songun(tar)
If Month(tar) = 12 Then
Yil = Year(tar)+1
Ay = 1
Else
Yil = Year(tar)
Ay = Month(tar)
End If
songun2 = Day(CDate("1/" & Ay+1 & "/" & Yil)-1)
songun= songun2&"/"&Ay&"/"&Yil
End Function
Function ilkgun(tar)
If Month(tar) = 12 Then
Yil = Year(tar)+1
Ay = 1
Else
Yil = Year(tar)
Ay = Month(tar)
End If
ilkgun2 = Day(CDate("1/" & Ay & "/" & Yil)-1)
ilkgun= "1/"&Ay&"/"&Yil
End Function
%>
First Day and Last Day of the Month Date Function video tutorial, Coding Archive video tutorial, First Day and Last Day of the Month Date Function Coding Archive tutorial, First Day and Last Day of the Month Date Function Coding Archive watch video, First Day and Last Day of the Month Date Function Coding Archive HD Video, With this asp vbscript function you can find the first and last day of a month. It is a very fast function that will work in your database filtering operations. Coding Archive sample video, With this asp vbscript function you can find the first and last day of a month. It is a very fast function that will work in your database filtering operations. Coding Archive video code , First Day and Last Day of the Month Date Function learning video, First Day and Last Day of the Month Date Function coding video
Coding Archive
In this area, I show advanced ASP - Active Server Pages coding and working styles and coding with MySQL, MSSQL, Oracle and other databases. - See All
For Classic Asp MySql database random data this code is for you! You can use it in all your projects for Mysql database random data that works smoothly and fast.
You can use the code I have given to send mail without any problems with the CDO component. Have peace of mind with this CDO code that works smoothly in your projects :)
You can examine the example of placing a logo on a photo with the Classic Asp ASPJpeg component with this code. You can use the Classic ASP AspJpeg component code piece that will always work for you in all your works.
With this asp vbscript function you can find the first and last day of a month. It is a very fast function that will work in your database filtering operations.