Search

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

Matching Posts

  • Re: Color not changed for listitem in bulletedList if displaymode="LinkButton"

    Hi, you just set a hover style for the hyperlink. If you want to change the color of the text you have to add: ul.BList li a {color: #000000; } But the styles that you added above should be working, i.e. the bullet points should be red and the links should get lime when you hover them. Andi
    Posted to Web Forms (Forum) by CrazyChief on 10/14/2009
  • Re: DestinationPageUrl

    Hi, can you access the home.aspx-page manually (by typing in the url) after you logged in? If you stay at your login page the authentication process wasn't successfull. If you didn't change anything in your application there are only few possible reasons left: - Your browser settings have changed. _Make sure cookies are accepted_! - Make sure no error is thrown due to invalid or inconsistent data in your database. - Make yure the ASPNET-user has access to the Userfiles-folder. But yes you
    Posted to Web Forms (Forum) by CrazyChief on 10/14/2009
  • Re: Setting up a maximum width

    Hi, late but at least an answer ;) You can use it. Just add the "using MyNameSpace" to your usings and then you can work with the control. Or use the full name "MyNameSpace.MyImage lImage = new MyNameSpace.MyImage()" If you have put the custom control into another dll or projekt make sure to add a reference to that assembly or projekt. Andi
    Posted to Web Forms (Forum) by CrazyChief on 10/13/2009
  • Re: Color not changed for listitem in bulletedList if displaymode="LinkButton"

    Hi, you can't reference your css with the bullet lists ID (# Resort sBulletedList) because the generated ID differes from the one in your code. Just use a css-class instead: <asp:BulletedList CssClass="mylistclass" ID= "ResortsBulletedList" runat= "server" DisplayMode= "LinkButton" DataTextField = "Name" DataValueField = "ResortID" /> Then change your css to: ul.mylistclass li { /* styles here */ } ul. mylistclass li a { /* styles
    Posted to Web Forms (Forum) by CrazyChief on 10/13/2009
  • Re: DestinationPageUrl

    Hi, you're redirected back to your login-page because the authentication process wasn't successfull. I guess you are working with forms authentication, then make sure that cookies are activated and allowed for your domain. Debug the authentication part of your application and try to find out, why it wasn't successfull. Andi
    Posted to Web Forms (Forum) by CrazyChief on 10/13/2009
  • Re: sorting records??

    Hi, guess this is what you need: SELECT * FROM( SELECT TOP 25 YearMonth, MonthYear FROM MonthYear ORDER BY YearMonth DESC ) a order by a.YearMonth ASC Andi
    Posted to Web Forms (Forum) by CrazyChief on 10/8/2009
  • Re: Strange behavier in Firefox displaying vbtab (char(9))

    Hi, did you set a fixed font-size for the texareas (inputs) in css? You could try to clear the browser caches and reload the page. If that doesn't work you cold try to use "\t" instead of vbtab Andi
    Posted to Web Forms (Forum) by CrazyChief on 9/28/2009
  • Re: After an event occured on a page, when I open the same URL on other browser window the same event fires again

    Hi, just a guess: To open the exported grid in excel you make a redirect to your generated excelsheet and you change the content-type to "application/ms-excel", right? I would try to add a "Response.Redirect("yourpagename.aspx"); at the end of your export-event. Andi
    Posted to Web Forms (Forum) by CrazyChief on 9/8/2009
  • Re: Dynamic .ascx Form

    Hi, I would work with a Repeater: aspx-code: <asp:Repeater ID="repData" runat="server" OnItemDataBound="repData_OnItemDataBound" > <ItemTemplate> <asp:Panel runat="server" ID="pp_notif_display"> <asp:Label runat="server" ID="lbl_title"></asp:Label> <asp:Label runat="server" ID="lbl_details"></asp:Label> </asp:Panel> </ItemTemplate> </asp:Repeater> code
    Posted to Web Forms (Forum) by CrazyChief on 9/3/2009
  • Re: object reference not set to an instance of an object fileupload

    Hi, do you have any "clean-up-code" in page_load, page_prerender, ... that resets the file upload control? If this is the case just put a "if(!IsPostBack){...}" around it. You can check it by setting a breakpoint in the very first line of the first event in life cycle you implement (i.e. page_init or page_load) and check if your fileupload has a file at this position (fileupload1.HasFile). Andi
    Posted to Web Forms (Forum) by CrazyChief on 8/11/2009
Page 1 of 11 (110 items) 1 2 3 4 5 Next > ... Last ยป