Search

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

Matching Posts

  • Re: Redirect a page in a frame target

    I'm afraid you can't do this with Response.Redirect(). If you're performing a PostBack simply to redirect to another frame, then I suggest that you convert the LinkButton (if that's what you're using) to a normal HtmlLink (with "new.aspx" as the href) and set the target to the name of the target frame. If you must perform a PostBack then you will have to inject some javascript into the page, so that it loads "new.aspx" into the appropriate frame. For example
    Posted to Getting Started (Forum) by stevenbey on 11/11/2009
  • Re: Databinding Syntax Not Working in ListView LayoutTemplate

    I think the interpretation of the documentation is incorrect. The "this element will be replaced with the content that is defined in the ItemTemplate" is pertaining to the "placeholder object", otherwise it doesn't make sense - the rest of the markup in LayoutTemplate is still rendered as it is defined. Does anyone else know why the LayoutTemplate doesn't allow <%...%> syntax?
    Posted to Data Presentation Controls (Forum) by stevenbey on 7/20/2009
  • Re: Web layout problem

    I'm afraid that's one of those "How long is a piece of string?" questions. If you can provide some context (ie code) or explain what and how you need to display, it will be easier to help you.
    Posted to Web Forms (Forum) by stevenbey on 5/8/2009
  • Re: address field

    To do what you want, you will have to either implement a VirtualPathProvider or configure IIS to handle all requests via ASP.NET.
    Posted to Web Forms (Forum) by stevenbey on 5/8/2009
  • Re: Dropdownlist with vertical scroll bar

    I'm afraid the answer is that you can't. The only way to do this would be to buy custom DropDownList/ComboBox control (or develop your own) but they don't use native HTML and will cost quite a lot. If you really need to do this (and I suggest that you don't worry about it) then the EasyListBox is a really good 3rd party control.
    Posted to Web Forms (Forum) by stevenbey on 5/8/2009
  • Re: Web layout problem

    The use of tables, for page layout, is a big no-no, in terms of accessibility BUT designing the HTML and CSS for a flow layout can be difficult, especially for a newbie. I suggest that, for the time being, you stick with tables but start learning CSS and then convert your code when you better understand how to transform the look of plain HTML with CSS. Also (and to answer your question ), a common problem for novice designers is a condition called Divitis , which is the overuse of divs and relates
    Posted to Web Forms (Forum) by stevenbey on 5/8/2009
  • Re: Yahoo quotes problem

    Have you tried URL encoding the value of symbol? Private Function GetQuote( ByVal symbol As String ) As String Try Dim url As String 'stores url of yahoo quote engine Dim buffer As String 'Dim bufferList As String() Dim webRequest As WebRequest Dim webResponse As WebResponse url = "http://quote.yahoo.com/d/quotes.csv?s=" + Server.UrlEncode( symbol ) + "&d=t&f=sl1d1t1c1ohgvj1pp2wern" webRequest = HttpWebRequest.Create(url) webResponse = webRequest.GetResponse()
    Posted to Getting Started (Forum) by stevenbey on 5/8/2009
  • Re: using SqlDatASource programmatically - output parameters

    Thanks Sean, this helped me find a solution for my problem: I have a SqlDataSource inside a Repeater ItemTemplate, which retrieves data for another, nested Repeater. The output parameter is used in the OnItemDataBound method of the nested Repeater. The problem that I had was how to store the value relevant for each RepeaterItem without some complex storage/matching value solution. As it turned out, it was quite simple. The object passed into the SqlDataSourceStatusEventHandler is a SqlDataSourceView
  • Re: Regular Expression Issue

    First of all, including the underscores in your RegEx will pass any value that contains an underscore. I suggest you remove them from your RegEx. Secondly, I get the impression that the correct format is three numbers, hyphen, three numbers, hyphen and four numbers but your RegEx would allow you to put number, hyphen, number, hyphen and number (I'm disregarding the underscores). If I'm correct, then the correct RegEx would be something like: ^\d{3}-\d{3}-\d{4}$ This will validate that the
    Posted to Getting Started (Forum) by stevenbey on 9/2/2008
  • Re: Slow LoadControl() when using DualCore CPU

    [quote user="Irgendware"]A class "UserControl" does not exist.[/quote] Yes it does, under the System.Web.UI namespace.
    Posted to Custom Server Controls (Forum) by stevenbey on 8/6/2008
Page 1 of 281 (2808 items) 1 2 3 4 5 Next > ... Last »