User Profile

Collapse

Profile Sidebar

Collapse
Jason Kibble
Jason Kibble
Last Activity: Aug 23 '12, 03:12 AM
Joined: Jun 23 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • FileUpload error that isn't actually erroring ???

    I have multiple FileUpload controls on the same page (about 30). I have a try...catch around the SaveAs Method for each of these controls. If an exception is caught, it adds the exception to a List<Exception> and after attempting to save all uploads, if the Exception List has any items, I get an email.

    I have been getting emails for many days now saying that Access was denied; however, when I check on the file, it was actually...
    See more | Go to post

  • Try something like this:

    Code:
    DECLARE @StartDate DATETIME, @EndDate DATETIME
    
    SELECT
    	@StartDate = 
    	CASE WHEN 'Today' THEN CAST(FLOOR(CAST(GetDate() AS FLOAT)) AS DATETIME)
    	CASE WHEN 'This Week' THEN DATEADD(dd, -1 * (DATEPART(dw, GETDATE()) - 1), CAST(FLOOR(CAST(GETDATE() AS FLOAT)) AS DATETIME))
    	CASE WHEN 'ThisMonth' THEN DATEADD(dd, -1 * (DATEPART(d, GETDATE()) - 1), CAST(FLOOR(CAST(GETDATE()
    ...
    See more | Go to post

    Leave a comment:


  • Try removing the comma after the pasword value. You are only trying to set a single value, so there is no need for a comma.
    See more | Go to post

    Leave a comment:


  • Jason Kibble
    started a topic Limit in jQuery/DOM/Browser of 65540

    Limit in jQuery/DOM/Browser of 65540

    I am looking at jQuery as an alternative to an ASP.net Gridview for use in paging data to reduce database calls (I looked into ObjectDataSourc es as an alternative, but it seemed to take longer than the default paging due to the need to run the Row_Number function on each row before selecting the rows needed).

    I am using the plugin found here: http://plugins.jquery.com/project/pagination

    The dataset I am trying to load...
    See more | Go to post
No activity results to display
Show More
Working...