Stephen Songer
.NET Programmer in the Northwest
Sign in
|
Join
Home
Contact
RSS
Atom
Comments RSS
Search
Tags
AJAX
ASP.NET
JavaScript
Reporting Services
Sharepoint
SQL
SQL Server
SSIS
SSRS
Sponsors
advertise here
Navigation
Home
Blogs
Archives
June 2009 (1)
April 2009 (5)
March 2009 (1)
February 2009 (3)
January 2009 (1)
December 2008 (2)
October 2008 (4)
September 2008 (4)
August 2008 (4)
July 2008 (2)
June 2008 (1)
May 2008 (2)
April 2008 (2)
January 2008 (1)
December 2007 (1)
November 2007 (3)
July 2007 (2)
Favorites
ScottGu
Slashdot
Matt Berseth
April 2008 - Posts
1
Comments
Disable button on AJAX postback
by
bunbun
Found a way to disable a button during the AJAX postback. Just use this simple JavaScript and change the button name to match the control on the page. < script type ="text/javascript"> //add event handlers to the search UpdatePanel Sys.WebForms...
Filed under:
ASP.NET
3
Comments
Converting Binary to Text in SQL Server
by
bunbun
Some databases store longer text fields as binary. To retrieve the text in a varchar field, do the following: CAST(CONVERT(varbinary(max),velive.dbo.part_binary.bits) AS varchar(max)) velive.dbo.part_binary = Table Name bits = Field Name You can specificy...
Filed under:
SQL Server
More Posts