Search

You searched for the word(s): userid:625620

Matching Posts

  • Re: Business Logic & Reorder List Control

    Ok, so how did you do it?
    Posted to ASP.NET AJAX UI (Forum) by Mobes on 10/23/2007
  • Re: Set Focus on Textbox in modalPopup Panel

    I found a partial solution for my issue...put this in your page load or on button click events, etc.: System.Web.UI.ScriptManager.GetCurrent( Me ).SetFocus( Me .tbPartNumber) It works with multviews and panels when the container that your controls are in, are intially set to be not visible. I still haven't found a way to get set focus on a textbox in a modalpopup on the second pane of a multiview or a panel that initially has it's visible property set to false.
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Mobes on 8/20/2007
  • Re: Set Focus on Textbox in modalPopup Panel

    This works fine for me on a simple page but when I'm using a MultiView I'm having issues. When the ModelPopupExtender and related panel with the textbox is on the second view of a multivew, I get a popup error that says: "Microsoft JScript runtime error: 'null' is null or not an object" Here's my code: < asp:UpdatePanel ID= "UpdatePanel1" runat= "server" > < ContentTemplate > < asp:MultiView ID= "MultiView1" runat= "server"
    Posted to ASP.NET AJAX Control Toolkit (Forum) by Mobes on 8/17/2007
  • Having same issue but with Excel

    Did you ever get this figured out? I'm having the same issue with exporting a gridview to Excel Thanks, -Marcus
    Posted to Configuration and Deployment (Forum) by Mobes on 1/24/2006
  • Having the same issue but with Excel

    Did you ever figure this one out? I'm having the same issue but with Excel...and I found someone else that had this issue with a PPT file. Thanks, -Marcus
    Posted to Web Forms (Forum) by Mobes on 1/24/2006
  • I'm getting the same error but with exporting to Excel.

    I'm implementing IHttpModule and intercepting app.Error When I try to export my Gridview to Excel, it works fine, but my global error handler is trapping an error and sending me an email: 01/24/2006 16:18:51 Type : System.Web.HttpException, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a Message : Path 'OPTIONS' is forbidden. Source : System.Web Help link : ErrorCode : -2147467259 Data : System.Collections.ListDictionaryInternal TargetSite : Void ProcessRequest(System
    Posted to Security (Forum) by Mobes on 1/24/2006
  • Re: Club Site Starter Kit and SQL 2000

    With the Web Site Administration Tool, create a new role called Administrators and then assign your user login to this role. Also you'll need to give the Administrators role access to the root of the application directory. When you're done with this stuff, you should have access to all the admin functions. If you check out the web.config file, you can see where all security is setup with access to the Administrators role.
    Posted to Club Web Site Starter Kit (Forum) by Mobes on 10/17/2005
  • Found a bug with removing events

    If you've created an event, and then try to remove it by clicking the "Remove" button on the Events_List.aspx page, you're redirected to another page but nothing really happens. The problem is that the link that posted when you click the "Remove" button contains the querystring item "Action" that is set to "delete". However the code that handles the "Action" querystring item is looking for "Remove". So you need to change the code to be: else if (action == " delete " ) instead of else if (action
    Posted to Club Web Site Starter Kit (Forum) by Mobes on 10/14/2005
  • Re: Multiple Day Calendar Events

    I figured out an easy way to do this. All you have to do is create a new table called "days" with one numeric field called day. Create 10 (or however many days you think your events will span) rows numbered sequentially starting from 0. So start with 0 to 9 to make it easy (or do 31 to be thorough). Now here's the slick part. Drop this sql statement into the sqldatasource for the calendar: select a.id, dateadd(dd, b.day, a.starttime) as starttime, CASE WHEN b.day = 0 Then a.title Else a.title +
    Posted to Club Web Site Starter Kit (Forum) by Mobes on 10/14/2005
  • Re: Is anyone adding new features??????

    Why do you have "memberid" as part of the parameters for the insert? The member id should be what's already listed as " CType (user.ProviderUserKey, Guid)". If you remove "memberid", it should be fine, unless you actually added another field. But then you would still have to declare what "memberid" is...I don't seen any code doing that.
    Posted to Club Web Site Starter Kit (Forum) by Mobes on 10/14/2005
Page 1 of 2 (20 items) 1 2 Next >