Search

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

Matching Posts

  • Re: Web Parts get added, later they disappear

    Thanks for the link. It did give me some insights into how the api operates. Although they have changed the source folders and changed virtual directories once or twice in the past I cannot imagine that this can cause a problem that recurs every day or so. Page names do not change, and the Application Name (the one in web.config I assume) is not changing. I can't imagine that they are changing the application name in IIS settings (and if they were it would not be a change that is happening frequently
  • Web Parts get added, later they disappear

    We have a deployed web application .net 2.0 that has a number of web parts that can be added from the declarative catalog. Once they are added, eventually the user will return to the page and they're gone (basically the page reverts back to the original state with a single default web part on the page). This same application does not do this at other customer sites and not at our site so I believe its something in their environment. Membership is using Sql provider to Users, Profiles and Roles
    Posted to Web Parts and Personalization (Forum) by jeffreymergler on 8/6/2009
    Filed under: personalization, .NET profile provider, .net 2.0 Web Parts Personalization, asp.net 2.0 vb.net webparts webpart connections, Personalization webparts
  • Re: TabPanel TabContainer having problems with postback with Usercontrol within Tabs - Losing Tab reference

    above worked for me. heres my vb.net version: Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load ' problem with TabPanel not setting to current TabPanel after a PostBack ' http://forums.asp.net/t/1106477.aspx?View=Flat If Not Request.Params("__EVENTTARGET") Is Nothing Then Dim control As String = Request.Params("__EVENTTARGET") Dim i As Integer For i = 0 To TabContainer1.Tabs.Count - 1 Step i + 1 If (control.Contains(TabContainer1
  • Re: Sys.InvalidOperationException: Handler was not added through the Sys.UI.DomEvent.addHandler method after upgrading to RC1

    jfkrueger: None of these worked for me. On my page I have several dynamically generated link buttons inside a repeater control. When any one of those linkbuttons is clicked I want the popupextender to show it's panel. It works fine until a postback (hit submit on the popup panel) and then when I click one of the linkbuttons I get the error. Any clues on this? I have tried all suggestions above and none of them work.. None of these suggestions worked for me either. I did try a number of things here
  • Re: A gridview control having a fixed column option? ajax or no ajax.

    This solution worked quite well for me. I'd simply add that for a GridView, substitute the ItemBound event handler code for: Private Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowDataBound If e.Row IsNot Nothing Then If e.Row.Cells.Count > 1 Then e.Row.Cells(0).CssClass = "locked" e.Row.Cells(1).CssClass = "locked" End If End If End Sub
  • Re: SkinID not working on my custom web controls

    Disregard my previous reply. I found the solution to my problem here: http://odetocode.com/Blogs/scott/archive/2005/09/01/2145.aspx Once I read it it made total sense. I've created a base class off of GridView so now the skin no longer applies to my baseGridView, you have to create a new block for the base class in the skin file. so I copied by exiting markup for the Gridview pasted it, then added the Register directive with the ref to my baseclass then changed <asp:GridView ... to <OTC:myBaseGridView
  • Re: SkinID not working on my custom web controls

    wadep: I am creating custom composite web controls (I am new to this). For test purposes, I hard code the SkinID of each child control to a given value eg. TextBox with SkinID = 'txtStandard'. When I use my custom control on a web form it does not render the child controls using the SkinID. Everything works if I create a User Control containing the same child controls eg. TextBox with SkinID = 'txtStandard'. It looks like the SkinID in my composite web control is being ignored. Any help appreciated
  • Re: Beta 2: AnimationExtender MethodNotFound Error

    Sara, sorry... I'm a dork :S in my quick haste to throw up a poss. solution, and move on, I managed to confuse two issues sorry... allow me to restate and clarify here: Please disregarard my reference to the web.config and to Microsoft.Web.Extensions . My file is the same as yours above, as is my web.config. Our issue was an issue of 2 different versions of the AjaxControlToolkit.dll mentioned above. What has fixed our problem is discovering that there are two versions and then only publishing AjaxControlToolkit
  • Re: Beta 2: AnimationExtender MethodNotFound Error

    We had a very similar error that aoccured under the exact same conditions: local site fine, deploy to server, bang. After some investigation, we noticed that the AjaxControlToolkit.dll was different on the dev machine vs. the server (where the error happened). My dev machine was AjaxControlToolkit.dll v1.0.61121.0, and the server was AjaxControlToolkit.dll v1.0.61120.0. My local web.config referenced the AjaxControlToolkit.dll v1.0.61121.0, while the server's web.config was referencing AjaxControlToolkit
  • Re: GridView within Collapsible Panel does not get its Theme/Skin applied

    I should also mention that there is some .js that performs Hotmail-style checkbox selection similar to this how-to: http://aspnet.4guysfromrolla.com/demos/printPage.aspx?path=/articles/052406-1.aspx perhaps i have some sort of clash between my checkbox js and ajax's js
Page 1 of 3 (24 items) 1 2 3 Next >