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 SkipVought 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: dace
  • Order by date
  1. dace

    How to maintain the value

    You could create a hashtable when the first page is submitted, and store it in the session state. You could then pull that hashtable out of the session and update it for the subsequent pages. See: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspnet/html/asp12282000.asp for...
  2. dace

    dropdownlist.selecteditem.text problem

    Two possible problems I can think of: 1) Security issue - ASP.NET can't access that folder on your c: drive - try moving the images to a folder in c:\inetpub\wwwroot\yoursitename\images (or wherever your virtual directory points), or give permissions to that folder to the ASP.NET user account...
  3. dace

    Windows Authentication/AD Integration

    in IE menus: Tools > Internet Options Go to the Advanced tab, and scoll down in the list to the Security section at the bottom - it's the "Enable Integrated Windows Authentication" checkbox - 8th from the bottom on mine.
  4. dace

    Windows Authentication/AD Integration

    I'm no expert, but here's what I know: They're a bit different in that AD auth requires the directory services namespace, and you have to do the authentication through LDAP to the AD. You can also create a GenericPrincipal token for requests. With Windows Auth, you just authenticate with the...
  5. dace

    can both ASP.net and ASP combined together

    How to Share Session State Between Classic ASP and ASP.NET http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/converttoaspnet.asp I just typed in your question and hit "I'm feeling lucky" in google. This topic has been covered many times, please try to use the search...
  6. dace

    LiteralControl - Escaping Double Quotes

    You can get double quotes with either Chr(34) or """" (4 of them).
  7. dace

    Validation Controls not working on server

    1) make sure it has the same version of the .NET framework installed 2) make sure you have a WebUIValidation.js file on the server, probably in the C:\Inetpub\wwwroot\aspnet_client\system_web\1_1_4322 folder. If it's not there, you're missing some ASP.NET components - you need to install the...
  8. dace

    Error New install VS.net 2003 No WEB server running

    Also, you will need to take note of the following when installing IIS after visual studio: http://www.windowsitpro.com/Windows/Article/ArticleID/37942/37942.html
  9. dace

    Error New install VS.net 2003 No WEB server running

    You probably need to install IIS (Internet Information Services) - the webserver that is integrated with Windows. See: http://www.webwizguide.com/asp/tutorials/installing_iis_winXP_pro.asp for Windows XP.
  10. dace

    EventArgs and Objects

    That code needs fixes in several places. Look at the code for the login.aspx page from this example: http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=70
  11. dace

    Validation Controls not working on server

    Check the source of the page from the client. Is the validator rendering to the page properly? Also, does the client browser have javascript enabled? Validation controls rely on it. So do you have a dynamic dns redirector to point your domain to the same machine, or is it a different machine...
  12. dace

    Sorting Arrays

    A custom IComparer might just do the trick then. See: http://www.vb-helper.com/howto_net_custom_sort_array.html
  13. dace

    Tree View and IFrame

    Glad to be of help :)
  14. dace

    Sorting Arrays

    Interesting question.. I don't think there's a way. Never heard of doing that for a high-level language- I can't think of a way to know how "unsorted" it is without iterating over the array every time. The best I can think of would be to create a custom IComparer and use it for your...
  15. dace

    Error Printing Material Plan

    Hm, maybe I'll try connecting a printer locally and trying again. Thanks for the reply!
  16. dace

    Tree View and IFrame

    just set src="LessonsGrid.aspx" for your iframe, either in the html or by using Iframe1.attributes.add("src", "LessonsGrid.aspx") in your code-behind.
  17. dace

    C#: Upload all files in a directory

    A better solution if you're using a windows forms app is to look into using a webservice to communicate between your app and your service. It'd make things simpler, handle whatever load you need, and do authentication. Other than that, you could probably look into using a hidden webbrowser...
  18. dace

    Login Form

    overview of auth: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnbda/html/authaspdotnet.asp http://authors.aspalliance.com/aspxtreme/webapps/aspnetauthentication.aspx your friend, who can answer these types of questions for you in about 10 seconds: http://www.google.ca
  19. dace

    Error Printing Material Plan

    Hi all, I was wondering if anyone had ever run into this error while trying to print the material plan: Error in Macro PRINTER-WRITE - call to Write Data Error (0x000006BE) in call to StartPage General Error Print Document Error I looked up the error code (0x000006BE), it's a generic...
  20. dace

    configuring web.config for 2 applications

    Nope, you can have multiple bin folders as well. You can even move them to different folders: http://www.hanselman.com/blog/PermaLink.aspx?guid=4d0ef4fb-f8ae-4355-a658-3c0432c98dbe

Part and Inventory Search

Back
Top