Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. firstdivision

    Display Events on Internet

    Hi, Cool, I'll have to look into that too. Thanks for the info, Andrew
  2. firstdivision

    Display Events on Internet

    Hi Patrick, Thanks for the reply. I guess that's an option, but we were hoping for a "sharepoint", or ".NET" way to do it. We're not that familiar with SharePoint yet so digging into the database would probably take longer than building our own calendar. Since we already have SharePoint it...
  3. firstdivision

    If Datalist returns no data, then ...

    If you don't get any items back then ItemCreated or ItemDatabound won't run (or at least not run with ItemType Item or Alternating Item?). In any case, I guess the easiest way would be to check the item count after you bind the datalist, so something like Datalist1.DataSource = ...
  4. firstdivision

    Display Events on Internet

    Hi, We have an internal sharepoint installation that has event lists we'd like to display on our public website in a read-only format. This must be a common need, but I have been unable to find any information about it yet. The site is hosted in a .NET environment (Framework 1.1), with Visual...
  5. firstdivision

    Using Information_Schema - Find auto-increment primary key

    Sweet! That worked perfect. Thanks Denis, FD
  6. firstdivision

    Using Information_Schema - Find auto-increment primary key

    Hi, I'm using the INFORMATION_SCHEMA tables to get the information to generate Sql statements. One unique problem I've come across is how to identify if a column is an auto-increment field. I need to know this so that I can write the insert statement without this field. Here's the two...
  7. firstdivision

    New Forum

    Cool. I used to enjoy the puzzles over at asp101, but they stopped doing them.
  8. firstdivision

    Framework Unregistered Overnight / Reboot

    Yes, in the Event viewer there was an Application Error: aspnet_wp.exe could not be started. The error code for the failure is 80070545. This error can be caused when the worker process account has insufficient rights to read the .NET Framework files. Please ensure that the .NET Framework is...
  9. firstdivision

    View files from another server

    Can you actually map the drive on the server to the file server's share? Then maybe you could use the drive letter of the mapped path when creating the FSO?
  10. firstdivision

    Framework Unregistered Overnight / Reboot

    Hi, Nobody has any other ideas? I'm stumped. I think it's going to end up turning into a "Format c:" to see if that fixes the problem. -FD
  11. firstdivision

    Framework Unregistered Overnight / Reboot

    Yeah, All the machines are configured the same, with the same versions of IIS and .NET. However, there must be some difference somewhere, I just need to figure out what it is. You're right, the problem only effects the ASP.NET web applications on the local web servers. I haven't tried...
  12. firstdivision

    Framework Unregistered Overnight / Reboot

    Hi, The state of the "ASP.NET State Service" is set to Manual, and it's logging on with the "NT AUTHORITY\NetworkService" account. Thanks, FD
  13. firstdivision

    Disable Viewstate with editable datagrid

    No, I've had the same problem, large datagrids take a long time to post back. The solution had always in my case been to make them filter the data before displaying the datagrid. In general those huge lists are too difficult to edit and work with online. For me, the slow postback has been a...
  14. firstdivision

    Framework Unregistered Overnight / Reboot

    Hi, There are three workstations in the group where I work that are constantly having the .NET framework uninstalled if we reboot and then leave the machine on overnight. When we arrive in the morning and try to load an ASP.NET application we get a "Server Application Not Available" error. In...
  15. firstdivision

    get list box items value in loop

    For Each lst As ListItem In ListBox1.Items I never knew about the "As ListItem" part. lol cool I always did: Dim lst as ListItem For each lst in.... thanks ca8msm -FD
  16. firstdivision

    dll and webconfig question

    I think as long as they both use the same web.config then you will be able to get at the color in both applications? I think the main concern is how the projects are physically laid out in IIS, sicne they will use the Web.config that is closest to them. Or I completely misunderstood your...
  17. firstdivision

    Conditional SUM

    Thanks vongrunt, worked like a charm.
  18. firstdivision

    Public "Test" Sql Servers to connect to...

    Hi, I'm writing an ASP.NET application that will be used to connect to remote (or local) SQL Server databases. Does anyone know of a place to find public "test servers" that I would be able to connect to to test out my app? I have a server of my own, but I would like to try more... thanks, FD
  19. firstdivision

    Conditional SUM

    I knew there had to be a slick way to do it. I'll give that a shot tomorrow. Thanks.

Part and Inventory Search

Back
Top