Search

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

Matching Posts

  • Re: localhost ReturnURL HTTP Error 404 - Not Found

    Thank-you, thank-you, thank-you!!
    Posted to Configuration and Deployment (Forum) by tlsterling on 12/28/2008
  • localhost ReturnURL HTTP Error 404 - Not Found

    I have an asp.net 2.0 website with Membership already configured. I've deployed the website to my hosting provider and everything's working great. When I attempt to access the page: http://www.geevu.com, I am appropriately redirected to the Login.aspx page and then redirected back to the Default.aspx page once I've authenticated. However, when I attempt to debug the same site locally on my own dev machine, I get the following error message: Server Error in '/EducationAdministration'
    Posted to Configuration and Deployment (Forum) by tlsterling on 12/28/2008
  • Re: CascadingDropDown with multiple parents?

    Sureshkaki, Make sure you're re-building the ajax solution and referencing the latest dll - if you're still having trouble, post your code and I'll take a look. Thanks! ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- i have four dropdwon list box.second one is dependent on first and third one is dependent on first and second and fourth dropdown is dependent on 1st ,2nd
    Posted to ASP.NET AJAX Control Toolkit (Forum) by tlsterling on 9/15/2008
  • Re: Dynamic DeclarativeCatalogPart Creation?

    You guys (or gals) probably already resolved this thread, but for other developers with this issue - I used the following to alleviate the NullReference issue: DeclarativeCatalogPart dcp = (DeclarativeCatalogPart)StudentCatalog.FindControl( "DeclarativeCatalogPart1" ); dcp.WebPartsListUserControlPath = "StudentWebParts.ascx" ; My StudentWebPart user control simply holds all the user controls I want available to a student and now I can programmatically set the CatalogZone content
  • (very) Custom GridView Column Sorting

    I'm populating a GridView with a list of users and one of the columns is the user's name, but I'm storing their first and last names as profile properties. If you're at all familiar with the SqlProfileProvider and it's storage techniques, you realize I can't just simply join to a table to obtain the user's names. Instead, I have construct a ProfileCommon object with each user's ID and then query for the names: public string GetUsersFriendlyName( object UserName) {
    Posted to Data Presentation Controls (Forum) by tlsterling on 9/9/2008
  • Re: asp calender Calendar.VisibleDate and Calendar.VisibleDate.Month always return 01/01/0001

    This is a reported bug with a workaround: http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=110750. I used the following to alleviate the problem: Entered by cichanlx on 3/2/2005 Initialize the property manually in the Page_Load event. This forces the VisibleDate property to be set to the proper date initially. In the Page_Load, place the following code: If Not Page.IsPostBack Then Calendar1.VisibleDate = Today End If
    Posted to Web Forms (Forum) by tlsterling on 9/4/2008
  • asp calender Calendar.VisibleDate and Calendar.VisibleDate.Month always return 01/01/0001

    asp calender Calendar.VisibleDate and Calendar.VisibleDate.Month always return a value of 01/01/0001.
    Posted to Web Forms (Forum) by tlsterling on 9/4/2008
  • Re: calendar control

    I know this post is way outdated, but I had this problem and it's a reported bug with workaround: http://connect.microsoft.com/VisualStudio/feedback/Workaround.aspx?FeedbackID=110750 I implemented the following to fix it: In the Page_Load, place the following code: If Not Page.IsPostBack Then Calendar1.VisibleDate = Today End If
    Posted to Web Forms (Forum) by tlsterling on 9/4/2008
  • Re: Validation Controls in FormView

    Found my problem [stupidity abounding] - that Visible = False attribute is my problem. In order to eliminate the standard RequiredFieldValidator output for Ajax Toolkit ValidatorCalloutExtender purposes, use the Display = 'None' attribute instead so that the control output will only be eliminated rather than the entire control itself. Whoops! ^_^
    Posted to Data Presentation Controls (Forum) by tlsterling on 9/3/2008
  • Validation Controls in FormView

    I've seen a number of posts with this topic, but none that resolve the problem I'm seeing. I'm trying to use validation controls within an editable FormView, I've got a RequiredFieldValidator, a CompareValidator, and a RangeValidator - none of which are working because the FormView doesn't seem to register them as criteria for a valid page. Here's my FormView: < asp:FormView ID= "FormView1" runat= "server" DataSourceID= "EventDataDS" OnItemUpdating
    Posted to Data Presentation Controls (Forum) by tlsterling on 9/3/2008
Page 1 of 9 (90 items) 1 2 3 4 5 Next > ... Last ยป