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 John Tel 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 afroblanca

  1. afroblanca

    Problem with dynamic controls

    Hello all, I'm wanting to create some dynamic controls, and have them persist their viewstate across page loads. Easy enough, right? All I have to do is re-create the controls upon each page load, using the same IDs. HOWEVER, here's the catch - in my PreRender event, I'm wanting to clear the...
  2. afroblanca

    Directory.Move() is throwing a weird IOException

    I'm using Windows XP, not using any impersonation (that I know of) I did made a bit of progress on this problem. If I make the source directory manually, through windows explorer, my code has no problem executing the Directory.Move() method. However, if I create the source directory through...
  3. afroblanca

    Directory.Move() is throwing a weird IOException

    Well, I gave "Everyone" full control, and I also gave ASPNET full control, and I still have the same problem. Interestingly enough, if I take out the Directory.CreateDirectory, I get this IOException : Could not find a part of the path (of course it doesn't tell you which path, the source or...
  4. afroblanca

    Directory.Move() is throwing a weird IOException

    Hello all. I'm trying to move a folder and all of its contents to a different location using Directory.Move(). However, when I try to do this, I get the following IOException : Access to the path...
  5. afroblanca

    Help with the Session object and Global.asax

    Can I refer to the Session object inside the Application_Exception handler of my Global.asax? I want to put some code that looks like this into my Global.asax : void Application_Error(object sender, EventArgs e) { Session["appException"] = Server.GetLastError().GetBaseException()...
  6. afroblanca

    Can I force a redirect to the standard ASP .NET server error page?

    Right. Well, the deal is that I actually have a bunch of exception handling routines in my code already. And they're all predicated upon an exception being handled in the usual way, and not being intercepted by AJAX .NET. In my code, if debug mode is turned off, then the user is redirected to...
  7. afroblanca

    Can I force a redirect to the standard ASP .NET server error page?

    Hey all, Here's the situation - Say that you've caught an exception, and you want to manually redirect to the standard ASP .NET server error page, and you want the page to display all the appropriate information about the exception that you caught. Is this possible? Here's the background...
  8. afroblanca

    How do I create a fulltext index on a view?

    Hello all, I'm wanting to do a CONTAINS query on fields that belong to two seperate tables. So, for example, this is what I'd *like* to do : SELECT ci.itemName FROM Content_Items ci INNER JOIN Content_Pages AS cp ON ci.contentItemId = cp.contentItemId INNER JOIN FREETEXTTABLE(Content_Items...
  9. afroblanca

    Need some help with URL rewriting

    Hey all, I'm wanting to build a site that uses URL rewriting. It will serve up all content from a single page, let's call it www.mysite.com/content/serveContent.aspx, which will be passed a querystring with an article identifier. However, I want users to see nice, human-readable...
  10. afroblanca

    401 Not Authorized error when authenticating XML web service

    Here's the situation : I have the same ASP.NET 2.0 web application running on both Machine A and Machine B. On both machines, I have Integrated Windows Authentication turned on, and Anonymous Access turned off for the folder that contains the webservice .ASMX file. When I hit a certain page...
  11. afroblanca

    401 Not Authorized error when authenticating Web Service

    Here's the situation : I have the same ASP.NET 2.0 web application running on both Machine A and Machine B. On both machines, I have Integrated Windows Authentication turned on, and Anonymous Access turned off for the folder that contains the webservice .ASMX file. When I hit a certain page...
  12. afroblanca

    Is it a bad idea to invent my own tags?

    Interesting - someone else just suggested that I use HTML comments. This is a good idea. However, my only concern is that users will be able to see the comments if they view source. In the end, I may just make some sort of lightweight control derived from LiteralControl. Since it's derived...
  13. afroblanca

    Is it a bad idea to invent my own tags?

    I'm glad that I asked. So, is there a safe way for me to demarcate the text in my document? I suppose that I could use XML for this somehow, but I wouldn't really know where to begin. As I mentioned, this text is in a standard .ASPX file. Do you have any suggestions? Thanks again for the help.
  14. afroblanca

    Is it a bad idea to invent my own tags?

    The tags show up only when you "view source" on the page.
  15. afroblanca

    Is it a bad idea to invent my own tags?

    Hello all, Here's the situation - I'm writing a CMS, and I need a way to demarcate where content text begins and ends. I have a windows service which then reads the content text, and then processes it in various ways. To demarcate the text, I invented a tag, <articleText> . I surround the...

Part and Inventory Search

Back
Top