Search

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

Matching Posts

  • Re: Building and running Web Site taking more than 5 minutes

    I cant answer that anymore because it got fixed. I think it was something missing because it got fixed after getting the latest version on SourceSafe. It could also have been a network latency problem since I am usnig a VPN to connect to sourcesafe and to the databases. Thank you anyway for your help.
    Posted to Visual Studio 2008 (Forum) by skynyrd on 9/25/2009
  • Building and running Web Site taking more than 5 minutes

    My web site is hanging forever when I hit F5. Here is the output. The bold line is where it hangs: 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\mscorlib.dll', Skipped loading symbols. Module is optimized and the debugger option 'Just My Code' is enabled. 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\Arquivos de programas\Arquivos comuns\Microsoft Shared\DevServer\9.0\WebDev.WebServer.EXE', Skipped loading
    Posted to Visual Studio 2008 (Forum) by skynyrd on 9/24/2009
  • Re: Working with GridViews, DataSets and Paging question

    Thanks a lot Reyou and PeteNet! I understand now that the Default Paging can have a performance cost if a dataset is too big. What is the point of returning 100,000 records if one is going to show only 10 tems per page? Using the Custom Paging, like you thaught me, I can force the dataset to always have the same size as the page. But what if: I still want to reduce roundtrips to the database to only one? I think I can use the Business Ojbects concepts (as seen in this book: http://www.amazon.com
    Posted to Data Presentation Controls (Forum) by skynyrd on 9/21/2009
  • Working with GridViews, DataSets and Paging question

    In my company people usually create a function called PopulateGrid() that returns a DataSet At a given event they bind that dataset to a gridview like this: GridView1.DataSource = PopulateGrid(); GridView1.DataBind(); Then they create a function like this: protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GridView1.PageIndex = e.NewPageIndex; GridView1.DataSource = PopulateGrid(); GridView1.DataBind(); } to handle paging Questions: Every time someone pages the grid
    Posted to Data Presentation Controls (Forum) by skynyrd on 9/17/2009
  • writing and reading excel file COMless

    Hi there, I need to create excel reports and read excel files. I've already done that in two different ways: 1 - Using COM interop ( http://msdn.microsoft.com/en-us/library/ms173186(VS.80).aspx ) 2 - Using Excel Writer by softartisans ( http://officewriter.softartisans.com/ ) The problem is that both solutions rely on COM objects. This time, I need to do it without any COM dll and, ideally, not using 3rd party products that are not free. Is that possible? Thanks
    Posted to Getting Started (Forum) by skynyrd on 5/12/2009
  • Re: Web Application Project is behaving bizarrely

    It worked. Funny thing is that if you rebuild the solution instead of the web application it doesn't work. At least I know that now. Thanks!
    Posted to Getting Started (Forum) by skynyrd on 5/6/2009
  • Web Application Project is behaving bizarrely

    Hey there, I just don't get Web Application Projects (a different model where you have two code behinds for each aspx file, one of them being a designer.cs file) For example: example.aspx example.aspx.cs example.aspx.designer.cs Some times the code don't stop on breakpoints on Page_Load and some times they do... Some DropDownLists throw errors saying there aren't methods to handle the DataBound event even though they are there on example.aspx.cs 'ASP.example_aspx' does not contain
    Posted to Getting Started (Forum) by skynyrd on 5/6/2009
  • Issue with Windows 2003 Server

    Hello, Does anybody know what is this error and how do I solve it I am trying to run a ASP.NET Web Application that accesses an Oracle 11g database, both in a Windows 2003 Server Event Type: Warning Event Source: ASP.NET 2.0.50727.0 Event Category: Web Event Event ID: 1309 Date: 3/23/2009 Time: 9:36:59 AM User: N/A Computer: C3PO Description: Event code: 3005 Event message: An unhandled exception has occurred. Event time: 3/23/2009 9:36:59 AM Event time (UTC): 3/23/2009 12:36:59 PM Event ID: a27446c5163b428e8844d3a9d624e805
    Posted to Oracle (Forum) by skynyrd on 3/24/2009
  • How to create a video chat?

    I was asken to develop a video chat with C sharp as a college project. Can anybody tell me where to start? Thanks!
    Posted to Free For All (Forum) by skynyrd on 3/20/2009
    Filed under: video, videos, web 2.0, Web Camera, chat ajax
  • Re: Error on Temporary ASP.NET Files

    Thanks! The problem was quite simple: I was adding a namespace in the code behind namespace CompanyName.ApplicationName { public partial class ClassName So I had to add the same namespace in the @Page directive Inherits attribute, like this: <%@ Page Language="C#" MasterPageFile="... Inherits=" CompanyName.ApplicationName. ClassName" ... %> I guess I never noticed that before...
    Posted to Getting Started (Forum) by skynyrd on 2/21/2009
Page 1 of 41 (407 items) 1 2 3 4 5 Next > ... Last »