Search

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

Matching Posts

  • Re: GridViewEx

    Great class! I really can't understand why MS did not implement the ability to display a footer/header when the grid is empty. Anyway, I had problems with the GridViewEx when having input controls in the footer. They do not maintain viewstate on postbacks. Therefore I did a little tweak to solve that: The ViewState is maintained because the footer is not the same footer as the original footer. As you can see in the code, there is newly created footer named _footerRow2. Therefore the viewstate
    Posted to Tips & Tricks (Forum) by proturbo on 2/19/2009
  • Re: export html to pdf

    I have written an example for converting HTML to PDF using iTextSharp which is an OpenSource library. It's not perfect, but with the source code available you can customize the library to fit your needs. In order to not open the PDF file instantly, but get the save dialog instead, I guess all you need to do in the example is to change the response doc type to stream instead: Response.ContentType = "application/octet-stream" ;' Hope this helps Here is the example: http://hamang.net
    Posted to Free For All (Forum) by proturbo on 8/18/2008
  • Re: Sys.WebForms.PageRequestManagerServerErrorException

    I'm experiencing the same problem. We are using ISAPI_Rewrite filter in IIS (rewrites to non-ASPX pages also). Will this be fixed in the initial release? Seems odd to start hacking on the action parameter or create HttpHandlers to solve this.
  • Re: Question about search engines and 404 statuscodes

    _bump_ Hoping someone could answer this. Guess this is a common issue.
    Posted to Configuration and Deployment (Forum) by proturbo on 5/5/2006
  • Re: Problem with nested applications in v1.1

    There is no real solution to your problem. See Rick's blog: http://west-wind.com/weblog/posts/2107.aspx for more information.
    Posted to Configuration and Deployment (Forum) by proturbo on 5/5/2006
  • Question about search engines and 404 statuscodes

    User and search engines have different preferences regarding files that are not found. Users like nice error pages telling them how to find the content requested, while search engines depends on statuscodes in the response. Configuring ASP.NET to create friendly error pages seems to have some issues regarding the statuscodes sent back to the browser. ASPX files that are not found will be handled by the ASP.NET framework and not by IIS. If you are using customErrors in web.config the user will be
    Posted to Configuration and Deployment (Forum) by proturbo on 4/26/2006
  • Re: Web Deployment Projects: Web.config sections <system.web>

    Hi! We are also experiencing the same problem. In our case, we have the issue when trying to replace Web references (references to web services). They are dynamic and VS 2005 adds a custom configuration section to app.config (that can be copied into web.config). The section is inside a section group and can not be replaced in the current version of the Web Deployment Project. Hope you can release an updated version soon, as many projects include web references. Thanks!
    Posted to VS Web Deployment Projects (Forum) by proturbo on 1/19/2006
  • Re: overriding rendercontents in checkboxlist

    I took the freedom to convert some of your code to C#: private void RenderCheckBox(ListItem itm, int i, System.Web.UI.HtmlTextWriter writer) { writer.AddAttribute(HtmlTextWriterAttribute.Id, this.UniqueID + "_" + i.ToString()); writer.AddAttribute(HtmlTextWriterAttribute.Type, "checkbox"); writer.AddAttribute(HtmlTextWriterAttribute.Name, this.UniqueID); writer.AddAttribute(HtmlTextWriterAttribute.Value, itm.Value, true); /*if (SelectionMode = ListSelectionMode.Single ) { writer.AddAttribute("onclick
    Posted to Hosting Open Forum (Forum) by proturbo on 6/30/2005
  • Re: Free .NET based FormsGenerator

    A new version has been released! Dowload it and try it out at http://formsgenerator.sourceforge.net
    Posted to Announcements (Forum) by proturbo on 7/14/2004
  • Re: Free .NET based FormsGenerator

    A live demo of the FormsGenerator has been released. See http://formsgenerator.sourceforge.net/index.php?option=content&task=view&id=35&Itemid=53 for more information...
    Posted to Announcements (Forum) by proturbo on 6/18/2004
Page 1 of 2 (11 items) 1 2 Next >