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

Search results for query: *

  • Users: afroblanca
  • Content: Threads
  • Order by date
  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

    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...
  3. 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()...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. afroblanca

    Trouble writing events to custom event logs

    Hello all, I have created two custom event logs for my ASP .NET web applications. For now, let's call them Log A and Log B. For some reason, whenever one of my programs writes an error to Log A, the error will show up in both Log A and Log B. If I try to write an error to Log A, the error...
  11. afroblanca

    &quot;401 Not Authorized&quot; error when authenticating a 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. When I hit a certain page on Machine A, it will call the web service on Machine A...
  12. afroblanca

    Could somebody please help me with XML namespaces?

    Hello, I'm using XML in two different situations, and both call for an XML namespace. I'm new to XML, and am not even sure what an XML namespace is or why I need one. In the first situation, I'm using XPath to query an XML document. The method XPathNavigator.GetAttribute takes a...
  13. afroblanca

    Updating the Application[] object outside of the application

    Is it possible to use one application to update the Application[] collection for another application? For example, I have Web Application A which is an admin tool, and I want to use it to update the Application[] collection for Web Application B, which is the customer-facing application.
  14. afroblanca

    How much of a performance hit is an XML-driven WebControl?

    Here's the situation - I'm writing a custom WebControl that accepts a number of parameters to determine how it behaves. Now, I could take accept these parameters through Properties in the WebControl itself. However, the number and complexity of the parameters would seem to necessitate a...
  15. afroblanca

    How to programmatically detect #include directives

    Is there a way to programmatically detect whether or not an #include directive has been used on the current page?
  16. afroblanca

    VS 2005 and source control

    Hello all, I've got a small (3 person) shop, and we are in need of a source control solution. For the last few months, we've been using CVSNT along with the Jalindi Igloo plugin, and things just aren't working out. We're getting errors left and right, and it's really killing our productivity...
  17. afroblanca

    How do I get rid of the ASP.NET Development Server?

    Hello all, I run and test all of my webapps on IIS, and not ASP .NET Development Server. I see absolutely no reason for ASP .NET Development Server to exist. Unfortunately, VS 2005 disagrees with me and wants to use ASP .NET Development Server whenever possible. Because of this, every time...
  18. afroblanca

    What is the best forum software for .NET?

    Hello, I'm looking to add message boards to my site. What is the best forum software for .NET? In the best case, the source code should be available. I don't mind paying for access to the source code.
  19. afroblanca

    What is the best way to do simple AJAX in .NET 2.0?

    Hello all, I am wanting to add some very simple AJAX functionality to my .NET 2.0 application. I want to make a "tabbed panel" control, whereby you have a panel of text with tabs at the top. Clicking on one of the tabs will change the text inside the panel. This will be similar to what you...
  20. afroblanca

    Understanding Page and WebControl lifecycle events

    Hello all, I'm having a very difficult time finding good articles on the page lifecycle and control lifecycle. It's really easy to find articles that cover *only* the page lifecycle, and it's also really easy to find articles that cover *only* the control lifecycle. However, what I need is an...

Part and Inventory Search

Back
Top