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 Chriss Miller 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 DotNetBlocks

  1. DotNetBlocks

    Cookies and Web Service

    Is this even possible? I am trying to create a web service that will allow interaction with our classic asp and asp.net applications. This service will act as an access point for reading and setting cookies that will be shared between the applications. I have tried using HTTPContext from...
  2. DotNetBlocks

    Problem reading ASP.net cookie

    I almost forgot. Here is how I am attempting to read the cookie with no luck. function cbxcheck(obj,row,col,cookiename, subname,value) { if (obj.checked) {document.cookie[cookiename][subname]= value; alert('on'); } else {document.cookie[cookiename][subname]=''...
  3. DotNetBlocks

    Problem reading ASP.net cookie

    Hello, Does anyone have a javascript example of reading a subcookie created in asp.net? Here is how I am creating my cookie. Dim Cookie As New HttpCookie("temp") Cookie.Values.Add("Name","Value") Page.Response.Cookies.Add(Cookie) Babloome Personal Blog...
  4. DotNetBlocks

    is it possible to call a subroutine within an asp page?

    No problem, glad to help. :) Babloome Personal Blog: http:\\WeToddz.com
  5. DotNetBlocks

    Is ASP The Answer?

    Yes, Asp and Access will work, but I would personally use ASP.net. Asp.net is much more powerful compared to classic asp, in my opinion. Babloome
  6. DotNetBlocks

    is it possible to call a subroutine within an asp page?

    Yes, it is possible. Can you please provide more information about your problem. Here is a very basic example. <% public sub PrintTXT(Content) response.write Content end sub %> <br /> <% call PrintTXT("Content1") %> <br /> <% call PrintTXT("Content2") %> <br /> <% call PrintTXT("Content3")...
  7. DotNetBlocks

    Problem Printing to network printer via VB 2005

    Hello, Does anyone have an example of specifying the paper source and color settings when trying to print files in vb 2005? Here is my current print function, but I need to be able to select the paper source and color settings. Any help is much appreciated. Babloome Dim pathToExecutable...
  8. DotNetBlocks

    LinkButton OnClick Event - Calling Code from App_Code

    Jzelhart, How do you get on the MVP List? Babloome
  9. DotNetBlocks

    Problem with switch statment

    Hello, I am new to C#, but I have exp in VB.net. I am having an issue with a case/switch statment in C#, and can not seem to figure out why. Every case statment receives the following error: "A constant value is expected" Shouldn't this always resolve to True or False? (determine < 0) = T...
  10. DotNetBlocks

    Server Application Unavailable

    After each step check to see if you problem has been resolved. 1. recreate the application folder in IIS. 2. restart IIS 3. reregister .NET in IIS on the box 4. reboot - when all else fails :) Good Luck, Babloome
  11. DotNetBlocks

    Creating dns records and binding in VB.net

    Hello, Does anyone have an example of creating a dns record and binding it in Microsoft DNS? Babloome
  12. DotNetBlocks

    Fast ASPX Pages with CSS Class - External JavaScript - Small Viewstate

    Try HTTP Compresion, I have personaly seen it dramaticly increase the speed of sites. Directions: http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/d52ff289-94d3-4085-bc4e-24eb4f312e0e.mspx?mfr=true PipeBoost offers a free tool to check and see if your compression is...
  13. DotNetBlocks

    Is VB.net on the decline?

    Hey AlexCuse, What state do you live in? Just curious becuse I want to leave South Florida, and am having a hard time finding places that actually use vb.net. Thanks
  14. DotNetBlocks

    Is VB.net on the decline?

    Hello, I have been noticing that the demand for VB.net has been on a decline lately. Is anyone else experiencing this as well? From what I have seen all the new jobs require C#. Babloome

Part and Inventory Search

Back
Top