String: 1.Its a class used to handle strings.2.Here concatenation is used to combine two strings.3.String object is used to concatenate two strings.4.The first string is...
Last Day of Previous MonthSELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE()),0)) Last Day of Current MonthSELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+1,0)) Last Day of Next MonthSELECT DATEADD(s,-1,DATEADD(mm, DATEDIFF(m,0,GETDATE())+2,0))
alert() dialog The alert() dialog box is used to communicate a message to the user (generally warnings of missed actions). For example, if the email...
At first glance, the three tiers may seem similar to the model-view-controller (MVC) concept; however, topologically they are different. A fundamental rule in a three tier...
Difference between DataList and Repeater DataList Repeater Rendered as Table. Template driven. Automatically generates columns from the data source. This features is not supported. Selection...
Defination: -In database management systems (DBMSs), an operation that is stored with the database server. Typically, stored procedures are written in SQL. They're especially important for client-serverdatabase systems because...