User Profile

Collapse

Profile Sidebar

Collapse
hrothenb
hrothenb
Last Activity: Feb 3 '22, 08:32 PM
Joined: Mar 27 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • hrothenb
    replied to How to Create a Message box in ASP.Net
    'ASP.net MessageBox
    'Add a scriptmanager to the ASP.Net Page

    <asp:scriptmana ger id="ScriptManag er1" runat="server" />


    try:

    Dim sMsg As String = "My Message"

    ScriptManager.R egisterStartupS cript(Page, Page.GetType, Guid.NewGuid(). ToString(), "alert('" & sMsg & "')", True)
    See more | Go to post

    Leave a comment:


  • hrothenb
    replied to Beginning and Ending DATE of a Quarter
    SELECT DATEADD(QQ, DATEDIFF(QQ,0,G ETDATE())-1,0) as [Start Of Last Quarter]
    ,DATEADD(s,-1,DATEADD(QQ, DATEDIFF(QQ,0,G ETDATE()),0)) as [End Of Last Quarter]

    SELECT DATEADD(QQ, DATEDIFF(QQ,0,G ETDATE()),0) as [Start Of Quarter]
    ,DATEADD(s,-1,DATEADD(QQ, DATEDIFF(QQ,0,G ETDATE())+1,0)) as [End Of Quarter]
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...