Search results

  1. StPatrick

    C++ Programming

    Then talk :) Seriously, what you want to know? Sounds like a very easy program
  2. StPatrick

    gotta upload sumthin

    Hmm... so what do you want to upload? Tell me, maybe I'll want too! :)
  3. StPatrick

    Deploying ASP.NET Application

    After you do/check all steps that WineIsGood suggested, and still have problems, tell us what you get, e.g. what errors, etc. I'm by myself running an ASP.NET driven web site and have no problems. Although it took time for me to find out what to copy and how to my web site at the beginning :)
  4. StPatrick

    phpnuke and db

    Also, I'm not sure PHPNuke works on Windows hosting (if you are not on Linux). I once tried to run it under IIS (no Apache, but of course PHP installed :) ) - haven't succeeded :(
  5. StPatrick

    ASP.NET and Custom Errors

    Sure.. I've downloaded the IBuySpy Portal (probably you have the same one), the Web.config file contains 2 not required sections: mobileControls and deviceFilters You can find them at the end of the file (if we are talking about IBuySpy)
  6. StPatrick

    Mail Problem from ASP.NET

    Hmm... then let's see what different in my code and yours. Here is what I use to send e-mail from ASP.NET (C#) MailMessage mail = new MailMessage(); mail.To = To; mail.From = From; mail.Subject = Subject; mail.Priority = Priority; mail.Headers["Reply-To"] = ReplyTo; mail.BodyFormat =...
  7. StPatrick

    Mail Problem from ASP.NET

    Actually you do not have to specify your SMTP server, just leave it as is (default). All you have to do is to put an existing mail account to From field of mail message. At least it works fine for me. ;)
  8. StPatrick

    .net upload

    Hmm.. it seems that .NET cannot find the class. Check that you placed the bin folder in your root and not in any subfolder. It should be in the root of the Web Application. Also, try removing the Global.asax from the project at all and see if you get the same error again with default.aspx. Of...
  9. StPatrick

    .net upload

    Hmm.. so is this something with "Inherits"? Did you put it manually, or changed the class name? Basicly it should work like this: Open the "Global.vb" file and look at the top of it. The namespace should be "resume" and the class name "Global". If not, then fix the Inherits line. It should look...
  10. StPatrick

    It is so quite...

    Eh.. almost the same here, just I don't have a daughter, so I just go to bar for a couple pints of beer, then of course there is no way to work or something :)
  11. StPatrick

    It is so quite...

    ... here. Where is anybody? Nothing to talk about? :) Or we all just working on our sites? :)
  12. StPatrick

    How did you find JodoHost?

    PlanetSourceCode.com :)
  13. StPatrick

    DBAdmin - Manage Access DBs Online!

    Ouch... That would be me :) Thank you Yash 8) Hope I will make it working with SQL Server too.. just need some time (real life job gets all attention... )
  14. StPatrick

    MAC Users Facing Problem While Browsing rfso.com

    But what kind of problems they meet? I saw you have a flash there, so maybe this causes problems? Though I'm sure there is a version for Mac too
  15. StPatrick

    Confused about options...

    No, not a big difference. But if you want to add, for example, forums on each of your sites, you will HAVE to separate them (assuming you'll use the same forums software), otherwise you'll get it messed up. So it is really good idea to use a different database for each site.
  16. StPatrick

    ASP.net - for ASP.NET developers

    And this is for ASP.NET (VB or CSharp) developers. There are some useful "sublinks" on this site: WebMatrix - a free tool for ASP.NET development from Microsoft (I can't tell you much about it, I use Visual Studio.NET 2003) IBuySpy Portal - an ASP.NET based content management system. From...
  17. StPatrick

    ASPin.com - Sources for ASP developer

    This site is only for pure ASP (ASP 3.0) programmers. A lot of sources, tutorials and code snipplets. This was my primary source in learning ASP. There are actually two useful categories - Applications and Tutorials (at least for me). Other just advertisings
  18. StPatrick

    Confused about options...

    Thanx Yash. What about other options I mentioned? Databases question for example?
  19. StPatrick

    Confused about options...

    With recent change in hosting options, I'm really confused now. Maybe someone can clarify it? :) I have a Silver package (ex-Pro). It says the quota is 400Mb. Does it affects new users only or old customers as well? If all, then why I still see 200Mb quota in HSPHERE? Same with bandwidth. Now...
  20. StPatrick

    ASp.net applications

    Not sure if this helps, but... It depends on what functionality you want. You can create a directory with different settings than the application itself, by placing Web.config file in it and adding features/settings you like. Of course, this is not a "proper" web applications, also some...
Back
Top