Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. I don't understand how they can issue a mandate without checking on something so fundamental. But, I'm sure that some of the big-wigs there can talk with the NSA to speed things along. (Not likely but it's worth a try)
  2. Rdenberg, Giving Everyone access does not include ASPNET user. Bri189a, The virtual folder can be located anywhere in HD as long as IIS knows about it.
  3. How about a Shared Folder?
  4. Have you tried making it a virtual directory and only giving ASPNET rights to access it?
  5. Most design questions can easily fit into the General section, if we see enough threads specific to OO Design to warrant a new section, we will then consider it. In the meantime I encourage you to post your questions in the General area. Thanks.
  6. It's on the original CD of VS 2002
  7. Did you guys install it side-by-side with 2003? If so, any side-effects? btw, I gonna love that "It tells you of unused variables" feature in VB, I can finally stop chasing my colleages with a broom.
  8. Denaes; as PD said ... I'll simply reiterated - DO NOT allow a couple of narrow minded ego-maniacs dissuade you from posting anything .NET related - in whichever of the languages you wish. You have an excellent track record here as most our regulars do - no question is too simple.
  9. What You See Is What You Get
  10. Which OS are you running?
  11. There is nothing out there that can compare to Visual Studio .NET 2003, it will create an ASP.NET page for you by default - if you select "ASP.NET Web Application" from the New Project list.
  12. I knew as soon as the thread surfaced. :)
  13. Web page or WinForm? I think you can use the ItemDataBound event for either.
  14. Hmm, I knew this thread would take a turn for the worst , now that you've all had your say.... I'm not at all surprised by any of the comments or insults that I've heard thus far and it saddens me that there are so many narrow minded people that cannot see past their own hand, by I digress. :(
  15. Depends on your browser settings, if you select "Every visit to a page" or some of the other options.
  16. In this particular solution it's because I already had a couple of base classes done in C#, so I merged them all together. And this mandate was for a VB.NET solution, but they don't mind a few C# projects in there, anyway, these base classes needed no modifications. I could've just referenced the assemblies but they do want the all the source code on hand. (understandably so)
  17. Well said PD. I use both C# and VB.NET equaly, within the same solution I'll have an almost equal number of projects in either language.
  18. VB6 question should be asked at our sister site ... http://visualbasicforum.com/
  19. check the DropDown's index for a zero during validation, you can do this client and server side.
  20. I think you meant First column...second column... Right? Anyway, is the icon stored in the database, if so, in what data type?
  21. I have never liked black backgrounds until I saw mmorpg.com, I agree with Paul that it's busy but I really like the look, and yeah Simon I used Lite w/ Blue from day one. Paul, do a Save As (complete htm) on this thread, there are 94 images at 169 KB the HTML is 362 KB. I have a P4 2.6, 1 gig RAM it is a very fast system, just not on this site. One more thing, the Text-Area is terrible, I don't like the WYSIWYG feature.
  22. Have you tried placing the LoadEvents call within the IsPostBack block
  23. Are you doing the same databind routine in the Page Load event? If so place the routine in an IF block... if (! ispostback()){ // databind here}
  24. Soemthing like this... dim c as control for each c in me.controls ' or iterate a container such as a Panel if typeof c is texbox directcast(c,textbox).text ' (gain access to one of it's properties here, TEXT is just one example) ' or do something else here end if next
  25. not without more details, post some of your relevant code.
×
×
  • Create New...