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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by markbeeson

  1. markbeeson

    Call HTMLEncode on all ASP.NET Page requests

    I would like to encode all my page requests handled by IIS 6.0. I thought ISAPI might be the way to go? Any ideas? My goal is to make sure dangerous tags are not passed to the pages to prevent cross-site scripting attacks. Thanks.
  2. markbeeson

    Debugging creates old page in Miscellaneous Items folder

    Thanks for that - yes I am working in Sourcesafe but that's not what caused the problem. I resolved the issue by clearing out the project files in the Temporary ASP.NET cache under: C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\Temporary ASP.NET Files (windows XP)
  3. markbeeson

    Debugging creates old page in Miscellaneous Items folder

    I'm trying to debug my ASP.NET project and all is well except: If I put a breakpoint on a page and then start the debugger, VS automatically puts a page of an old version of the code into the Miscellaneous item folder in the solution. What is causing this and how can I stop it? I've had this...
  4. markbeeson

    Find current version of project

    Thanks for that. Our reason is that we are running over 200 projects and every week they all email their project files in for analysis. We run a macro and change some information and then save the project file and email it back to the project manager. The problem is that some PM's are using...
  5. markbeeson

    Find current version of project

    Newbie and MS Project macros here - Does anyone know how to find the current saved version of a project? I'm trying to write a macro that opens up a project, does some changes and then saves it back to the same saved version but I can't see how to tell my macro what the original saved version of...
  6. markbeeson

    using Microsoft DHTML Edit control

    Hi, I've used Micorosoft's DHTML component as the heart and soul of my Content Management System but in some cases when a user tries to edit their website using the system they get asked for an Office 2000 CD! I've been looking around and it appears to be somehting to do with the setup of MS...
  7. markbeeson

    Name 'messagebox' is not declared

    Depending on when you want to display the message you can build the javascript in the ASP.NET using thisbutton.attributes("onclick")= "alert('This is my messagebox');"
  8. markbeeson

    Stripping querystring from URL

    Does anybody know how (or if) ASP.NET can be used to strip out the querystring from the url without reloading the page? I use the ViewState.Item property but sometimes I want to pass a filename across to another page. When it comes back it still has the filename in the querystring that I...
  9. markbeeson

    Javascript and CSS editor controls

    I'm looking for a CSS or Javascript control I can use in my VB.NET application. The app has to gather information about the website to be generated and then create ASP.NET pages on the fly. I can do the rest but I really need a friendly way for users to write the javascript and styles. Any...
  10. markbeeson

    Image upload problems - Mac vs Windows

    I'm uploading images to my website using the following code: If Not (filImage1.PostedFile Is Nothing) And filImage1.Value <> &quot;&quot; Then postedFile = filImage1.PostedFile Dim filename As String = getFileName(postedFile.FileName)...
  11. markbeeson

    Sending faxes from VB

    Crikey Yes Please! The app needs to run on all versions of windows although we could exclude win95. Send me the code please!! Many thanks.
  12. markbeeson

    Sending faxes from VB

    I'm trying to get my app to send faxes straight from the application. All I can manage to do is get the MS fax wizard to start up. Does anyone know of a better way to just send the fax number to an application or serivice or something(!) to send the fax without prompts? Seriously consider...
  13. markbeeson

    Distributing Access components

    Thanks for the advice although the licencing lecture was unnecessary. It pretty much goes without saying that you don't distribute without the propery authority. The question was simply - can it be done? I'm not sure whether your reply answers my question but at least you've presented me...
  14. markbeeson

    Distributing Access components

    I've got an application that includes a feature to compact and repair the access database that runs the application. Whenever I try to install it on a machine that doesn't have access installed it gives me the error 'cannot create activex component' I've included msacc8.olb in the setup...

Part and Inventory Search

Back
Top