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...
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...
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.
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...
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...
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...
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
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.
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
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...
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...
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...
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
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.