Search

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

Matching Posts

  • Re: Javascript alert using code-behind with the Atlas UpdatePanel

    Great! Registering the script using the UpdatePanel instance works fine for me. Every script used in UpdatePanel should be registered on it. Thanks
    Posted to ASP.NET AJAX Control Toolkit (Forum) by st_ on 9/13/2009
    Filed under: ajax, update Panel, ASP
  • Re: AJAX Accordian - Postback resets selectedindex?

    Here is a workaround: Save in viewstate the selecetd index after loading the page - for example in OnPreRenderComplete page stage. ViewState["SelectedAccordionIndex"] = Accordion1.SelectedIndex; Then after loading controls (after Page_Init) load the selected index from viewstate. For example in Page_Load if (ViewState["SelectedAccordionIndex"]==null){ Accordion1.SelectedIndex=0; } else{ Accordion1.SelectedIndex=(int)ViewState["SelectedAccordionIndex"]; } This way doesnt
    Posted to ASP.NET AJAX Control Toolkit (Forum) by st_ on 4/22/2009
    Filed under: ajax, asp .net, Accodion
  • Re: Database Schema not compatible

    I had this issue but found an easy solution: You just need to take the web application offline and then online using Web Site Administration Tool. That makes some changes in web.config in the pages tag and globalization if needed. Then you can go
    Posted to Security (Forum) by st_ on 5/17/2008
    Filed under: asp.net 2 membership
  • Re: Problems with MSDataSetGenerator in VS.NET 2005 SP1

    This problem such a disaster. I tried many ways, migrating xml data into another, making changes by hand.. etc. - very difficult because of having many table adapters. Finally I found a really strange generated query which was named GetDataBy1 and FillBy1. Then I remembered I received an error during generating one of my last queries. I think I've canceled it but obvioulsy some code has been generated. This code was the reason to receive this error. This solved my porblem. I recommend you to
    Posted to Visual Studio 2005 (Forum) by st_ on 5/16/2008
    Filed under: ASP.NET
  • Re: Vista + Visual Studio - The Web server does not appear to have the FrontPage server extensions installed

    Hi, I have the same problem with Vista and vs2008. I suggest to open the site directly form the file system (not local IIS). It works for me. Use for debugging "attach to process" functionality instead of starting the site. Bye
    Posted to Visual Studio 2005 (Forum) by st_ on 2/19/2008
    Filed under: Vs 2008, ASP .NET 2
  • Re: Parser error or Dataset Error or Namespace Error

    Probably you have received this error after adding some additional code (also in the designer). Try to remove all code that you added before the error and try to build again. If this doesn't help try to clean/rebuild the assembly. If you are using xsd in your App_code folder the clean and rebuild are not available. Try to delete the temporary generated code in asp.net folder C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\[web_folder] Then build the site again ... or just
    Posted to Getting Started (Forum) by st_ on 1/22/2008
    Filed under: asp.net 2.0 visual studio
  • Re: Referencing Controls in the GridView EmptyDataTemplate

    Hi, try to use NamingContainer to obtain the grid row for the EmptyDataTemplate <pre> protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "Insert") { TextBox txt = (((Control)e.CommandSource).NamingContainer).FindControl("txtTest") as TextBox; //do insert action } } </pre> This works fine. ---------------------------- http://w3life.blogspot.com/2007/10/aspnet-how-to-access-emptydatatemplate.html
    Posted to Data Presentation Controls (Forum) by st_ on 10/23/2007
    Filed under: grid view, Grid view Row Color
  • Re: DataList Spacing Problems :(

    I SOLVED this problem by changing the control . The Repeater Control has almost the samo advantages of displaying data. I used it with table layout - <table> tag in the header with header row and </table> tag in the footer. Now the vertical lines looks good, the functionality is the same
    Posted to Data Presentation Controls (Forum) by st_ on 4/12/2007
  • Re: DataList Spacing Problems :(

    Css will cause the problem with variable width of columns. How can I use columns with variable width except with table element. Note that the header columns must match with item columns and footer columns. the problem occurs when I want to have vertical borders of columns - the lines are broken.
    Posted to Data Presentation Controls (Forum) by st_ on 4/12/2007
  • Re: Unable to cast object of type 'ProfileCommon' to type 'ProfileCommon'

    Thanks, man, this works fine. May be it is small asp bug, i don't know.
    Posted to Security (Forum) by st_ on 3/6/2007
Page 1 of 2 (11 items) 1 2 Next >