User Profile

Collapse

Profile Sidebar

Collapse
teddarr
teddarr
Last Activity: Dec 24 '09, 08:06 AM
Joined: Oct 9 '06
Location: Oklahoma
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Web.config problem while running multiple websites using host headers

    I have a Windows Server 2003. I am trying to run multiple websites on the server.

    I am using host headers to run the websites on only one ip address.

    Before anyone says this is an iis issue and in the wrong forum, Please note that I have tested all the host header settings with a simple hello world html file and everything works great.

    I get a runtime error that tells me to change custom errors to "Off"....
    See more | Go to post

  • teddarr
    replied to Host Headers for multiple websites not working
    in IIS
    Here's the error I'm gettong and I do have custom errors set to "Off" so I don't know why I'm getting this errpr:

    Server Error in '/' Application.
    Runtime Error
    Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running...
    See more | Go to post

    Leave a comment:


  • teddarr
    started a topic Host Headers for multiple websites not working
    in IIS

    Host Headers for multiple websites not working

    I have a Windows Server 2003. I am trying to run multiple websites on the server.

    I have 3 different websites I'd like to run.

    Currently the default website is working but no others.

    All the domains have an a record pointing to the network router. The router is conficured correctly to send all website requests to my server.

    One the server and for each website I went to the IIS manager...
    See more | Go to post

  • teddarr
    replied to no access to new instance of sql server
    when I set up the instance, I used administration and administration. The plan was to change the credentials through remote access once connection was made.
    See more | Go to post

    Leave a comment:


  • teddarr
    replied to no access to new instance of sql server
    I configured for mix, but I (being a fairly new developer and no network experience) don't have my network fully configured yet. SQL Server won't recognize windows authentication yet.

    This setup works great for me on the default instance.

    So, long answer short......sql account only.
    See more | Go to post

    Leave a comment:


  • teddarr
    started a topic no access to new instance of sql server

    no access to new instance of sql server

    I just recently installed a new instance of sql server 2005 on the second hard drive on my machine. It installed flawlessly and all the services are started. I don't have sql server management studio on my server with the databases so I configured the new instance to allow remote connections. When I go to my regular machine and try to access through remote connection and management studio, the new instance of sql server will not recognize the...
    See more | Go to post

  • DTS...what's that?

    Don't they call it SSIS now?

    Maybe look for that instead of DTS.
    See more | Go to post

    Leave a comment:


  • teddarr
    replied to Populating a Drop Down List Dynamically
    in .NET
    Ajax Control Toolkit

    These controls are awesome, and for the most part, easy to implement. The cascading dropdown is not the easiest, but there are some good examples that can be found with a simple google search.
    See more | Go to post

    Leave a comment:


  • teddarr
    replied to IIS limits to connections
    in IIS
    I've been doing some research and it looks like I'll just make things easy on myself and look at getting Windows Small Business Server 2003/2008 instead. It has IIS 6.0 and will meet all of my needs for the next few years. Otherwise I think I'll just be making things head on myself.......MI CROSOFT, YOU WIN AGAIN.


    when do i get to win?
    See more | Go to post

    Leave a comment:


  • teddarr
    started a topic IIS limits to connections
    in IIS

    IIS limits to connections

    I'm not sure if this belongs in the asp.net forum or the iis forum, but this seemed like the best fit.

    I have a website on my machine. I'm running windows xp pro and using iis for a webserver. I eventually want this to be a production box. I realize it is not the best possible machine, but I want to use it for about 10 clients who will access my website.

    I currently have the site up and running for test. After I...
    See more | Go to post

  • I guess I assumed ASP.NET was being used, my bad.

    Let me know if you are interested in finishing this code.

    In reality this project works best as a console app or WinForm app. I have adapted it in my own asp.net projects.

    It is very handy for my sideline gig where I need to process a ton of excel spreadsheets.
    See more | Go to post

    Leave a comment:


  • Next, in that first method, create a string variable. Call it something like "tempfile".

    make tempfile equal to the method call to the method I just gave you with the filename of your excel file as the argument.
    See more | Go to post

    Leave a comment:


  • OK, the first step in converting the excel file to an ArrayList is to convert the excel file to a comma delimited string.

    I'm going to give you this method in C#. It was passed on to me so I now pass it to you.

    Moderators This is the only large amount of code I will post. I'm gonna let this person write the program themselves.

    first add this to the header of the file and add a reference to Microsoft...
    See more | Go to post
    Last edited by Frinavale; Oct 14 '08, 04:48 PM. Reason: Made code legible: Added return lines to the end of each line in code

    Leave a comment:


  • I'll try to walk you through the process and let you code it from there.

    Create a new folder in your directory. Right on the C:drive for simplicity.

    In the code behind page use the System.IO.Direc tory class to look in that folder and find the file name of the excel file you want to enter.

    ex.
    [code=cpp]
    //-Attempt to process each discovered file-------------------
    bool...
    See more | Go to post
    Last edited by Frinavale; Oct 14 '08, 04:31 PM. Reason: added [code] tags

    Leave a comment:


  • teddarr
    replied to iis not pointing to default website
    in IIS
    I discovered the problem. IIS would not work on port 80, so following the advice of a "brand x" forum, I changed my IIS port to 81 and didn't look much further to find what was using port 80 in the first place. Doing a netstat -o from the command prompt didn't tell me anything about another program using port 80 so I stopped there and just told IIS to use port 81.

    Well, last night I did more detective work and all of a...
    See more | Go to post

    Leave a comment:


  • teddarr
    replied to Email problem
    in .NET
    This deals more with sql server 2005, but it may offer you some valuable insight:

    http://imar.spaanjaars .com/QuickDocId.aspx ?quickdoc=395
    See more | Go to post

    Leave a comment:


  • I think you can do this using SQL Server Management Studio in SQL Server 2005, I don't know about 2000.

    For 2005, right click on the target database, hover over Tasks, then select import data...

    This will start the Import Export Wizard.

    You could also write a custom program centered around the excel com object. I wrote a program like that a few years ago and it has helped me to learn many fundamentals...
    See more | Go to post
    Last edited by teddarr; Oct 13 '08, 05:35 PM. Reason: additional thought

    Leave a comment:


  • teddarr
    replied to using connection stirng
    in .NET
    see what vb is doing to my brain.

    Thanks for the correction. :)
    See more | Go to post

    Leave a comment:


  • teddarr
    replied to using connection stirng
    in .NET
    include using System.Configur ation;

    Then put your connection string in the web.config file in the connectionStrin gs node.

    example:

    <add name="nameOfCon String" connectionStrin g="Server=serve rName;Database= DbName;" providerName="S ystem.Data.SqlC lient"/>

    After that you will need to add a reference to either Windows.Configu ration or System.Configur ation....
    See more | Go to post

    Leave a comment:


  • teddarr
    started a topic iis not pointing to default website
    in IIS

    iis not pointing to default website

    I have created an ASP.NET app and published it to inetpub/wwwroot on one machine. It works great on that machine.

    When I try to run it on a sister machine I don't seem to be able to point iis at the website. All I get is a white screen that says "It works!"

    I copied all the files from the other machine. The file structure is the same. Under Default Wesite>>Propert ies, I have the home directory pointed...
    See more | Go to post
No activity results to display
Show More
Working...