Search

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

Matching Posts

  • Dynamic data bound control - fails to work

    Hello, I have a following problem with dynamically created control. When I dynamically add such control to a page, and do some data-operation with it, I get an error saying Item has already been added. Key in dictionary: 'TypHlavy' Key being added: 'TypHlavy Exact steps to reproduce error: Create new web site, Create new user control, name it for example MyControl. In the control, I add GridView, add a SqlDataSource to it, enable edit mode on GridView. In Default.aspx I add a Button called
    Posted to Web Forms (Forum) by jborza on 7/9/2008
  • Re: How do you load and update contents in a textbox OnLoad?

    This isn't much of a problem. Add OnLoad handler for the textbox and write code for it for example <asp:TextBox ID="txtContent" OnLoad = "txtContent_OnLoad" ... /> and in VB code add method Sub txtContent_OnLoad (object sender, EventArgs e){ //data loading txtContent.Text = "stuff"; } I am not sure about VB syntax thought, I'm a C# developer.
    Posted to Web Forms (Forum) by jborza on 1/16/2008
  • Re: IE 7 won't display a page with error

    OK, i got it resolved. You need to disable IPv6 for this to work, the process is described for example here: http://rbazinet.wordpress.com/2007/10/25/aspnet-development-server-problems-under-vista/ After I disabled IPv6 and restarted my computer, Internet Explorer normally displayed pages from ASP.NET development server.
    Posted to Web Forms (Forum) by jborza on 1/16/2008
  • Re: Compare between two or a lots of products in table of a database on website

    Well, the page you shown shows comparison of more products done vertically. You could try manually generating HTML code (you get each product from the database, create html table, in it create a row for one property (for example Name), and to each column insert name of respective product) - but this solution would pretty much hardcoded and not much ellegant. OR you can do horizontal comparison using for example DataGrid or Repeater controls, which would be quite easy, but not exactly what you wanted
    Posted to Web Forms (Forum) by jborza on 1/16/2008
  • IE 7 won't display a page with error

    Hello, I have tried running my web-application project after I installed Windows Vista with new IE 7. Normally, I open the solution in VS, start debugging / running, ASP.NET devel. server launches, Internet Explorer launches and displays my page. The problem is that after starting running or debugging of the project, ASP.net dev.server starts, IE starts, BUT shows me standard page-not-found page (Internet explorer cannot display the webpage...). After that I connected to the server from other browser
    Posted to Web Forms (Forum) by jborza on 1/16/2008
    Filed under: IE7
  • Cannot add user controls dynamically

    Hi, I have the following problem: I create User Control - for example: ctl.aspx: <%@ Control Language="C#" AutoEventWireup="true" CodeFile="ctl.ascx.cs" Inherits="ctl" %> TEST CONTROL ctl.aspx.cs is just the file generated by VS 2005. Now I create page where I want to include that control: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test.aspx.cs" Inherits="Test" %> <%@ Register Src="~/ctl
    Posted to Web Forms (Forum) by jborza on 9/14/2007
  • Re: Can Nokia N90 / SonyErricson phone render .aspx Page?

    Hi, what do you mean by saying that neither of them seems to render .aspx on firefox? You must mean the device browser. Some exemplary user agent is "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727)" But there seems to be another problem, that I am afraid I cannot help you with - it just never happened to me that .aspx page didn't work on device browser.
    Posted to Mobile and Handheld Devices (Forum) by jborza on 5/15/2007
  • Re: Can Nokia N90 / SonyErricson phone render .aspx Page?

    Try using alternative browser like Opera Mini, it'll save you data traffic anyway. But anyway, I tried aspx on my nokia browser and it worked fine... What model of Nokia or Sony Ericsson are you using? Symbian phones? What's the browser installed there?
    Posted to Mobile and Handheld Devices (Forum) by jborza on 5/10/2007
  • Re: sharing web pages in different applications

    Maybe you should use Custom Build steps in Visual Studio - to copy your "base" files to all new projects. So you would have one project with "base application" that will have custom build step - after building it will copy the updated base app pages to the derived application folders.
    Posted to Configuration and Deployment (Forum) by jborza on 5/10/2007
  • ASP.NET not loading assemblies

    Hi everybody. I have got webhosting with asp.net (I had php last year, but .NET is closer to my heart :) ) and I am trying to create some applications. The issue is that I cannot use any dll in the web application. It looks like the runtime does not find the assembly. The app loads the external assembly just fine when installed into fresh machine with IIS - I just put the assembly into "bin" subfolder of the web application. I have also tried setting up another directory for it and added assembly
    Posted to Configuration and Deployment (Forum) by jborza on 5/10/2007
    Filed under: assemblies web.config ASP.net
Page 1 of 1 (10 items)