i made a web application and i need it to work on a windows mobile system, the thing is that some control don't work the way i planned one thing is that form authentication doesn't work i have two question,
1- do i need to make a smart device project and do the whole program again
2- i need a way to print from this device (HTC TyTN II) to a bluethoot device (DPP-250).
I'm trying to redirect a domain to another site, without changing the first URL (users should keep viewing http://www.myurl.org since the new URL would be https://wwws.enterprisedomain.com).
I could do this, inserting a frame in the index.htm of the first domain (I know it's not the best practice, but it worked well for now):
The fact is that https://wwws.enterprisedomain.com has a login mechanism in ASP.NET. It's OK on Firefox and Chrome, but when we use Internet Explorer 8, it seems that POST doesn't work!
I have a website on IIS 7. This website has a HttpModule with an AuthorizeRequest event handler. This event does not fire for CSV files and I can access the file without logging in, I guess this is because IIS7 is not configured to require form autentication for CSV files.
I have an application that ran fine on a Win 2003 box using windows authentication. After installing the app on a 32-bit Windows Server 2008 box the users are now prompted for domain credentials every time they call the site. I went into IIS manager for IIS7 and disabled anonymous authentication and enabled windows authentication. What do I need to do here for the user to not be prompted for the credentials?
I'm having a tough time implementing mixed-mode authentication (windows & forms based) for my application using IIS 7. Doing it in IIS6 is easy, but the process doesn't translate to 7/7.5 - and my research has led to me to conflicting answers, none of which.
I have redirect page called WindowsLogin.aspx, and a forms-based one called Login.aspx. I'm having difficulty enabling Windows authentication for just WindowsLogin.aspx.
I tried to develop the asp.net 3.5 by using the windows authetication and it seems to work fine. I had tried this code on my machine (local iis6):
Response.Write(User.Identity.Name.toString());
It returned correctly "my windows login usernameDomainname" however, I tried to deploy it on the windows server 2008, it returned "computer name/Administrator" Then, I tried to access this page from my computer which was redirected to 401 error. Moreover, I looked for the system property which showed that this server and my machine are on the same domain group.
Here are the structure of my web site:Login.aspx in the root pathUserInfor.aspx and 1.txt in the sub-directory folder named 'Restricted' Authenticate this website with form authentication configured in IIS, and does not allow anonymous to get into the Restricted folder with the web.config file.I think it should work this way, if I manually access the 1.txt in the browser, I should be able to view the content, and if I go to the modules configuration for this applicaiton in IIS7, find the 'UrlAuthorization' module, and cancle the listbox for 'invoke for requests to asp.net ...', I should be directed to the loginurl setting in the root web.config file when I access the 1.txt file without logging, however, I still can see the content of 1.txt.
I have a web farm web project, and want to make sure windows authentication is working well without any problem in web farm, can any one give me some web sites or information about that?
I needed information regarding the capabilities & integration of AzMan tool with Asp.net.Currently, I got a Sharepoint 2007 website along with ASP.NET 2008 where I am using Form Based Authenication.Now, the requirement is any user within a domain registered in AD should be able to login in website through intranet.
Can I acheive this using AzMan, or I need to create two websites one with FBA for internet users and the other one for the intranet users with AD authenication. Also my intenet website is deployed and in use where usermapping and roles are already created, so using this tool what will be the impact on existing webiste.
I created a new project in both computers, i build it, i copied the 3 dll's files in the bin folder (System.Web.Mvc, System.Web.Routing, system.Web.Abstractions), and i publish them...., i go to my website [URL] both same problem "Page Not Found"
I tried many blogs...many advices...nothing yet...
I have put a form into an iframe. It is sent from another website to the php page on the site which has the iframe. Upon clicking the submit button nothing happens. Just a quick flash of the green page load bar. Why is this happening? I have spend hours on this...
And my action controller will catch these values like:
public ActionResult Step1(int id, int[] aantal_tickets)
or:
public ActionResult Step1(int id, IList aantal_tickets)
Both statements are working, but repopulating the form doesn't work. I get in every dropdown list the same value as the value selected in the first dropdownlist.
I have multiple sub-domains that use forms authentication. Once a user logs in, they are fine going to any of the other sub-domains.
Here is my problem: If I go to [URL], I get redirected to [URL]. After entering my credentials, I get redirected to [URL], which doesn't exist.
I have a work around but I would like to know if there is a cleaner way. What I do currently is set the loginUrl attribute of the forms element of the [URL]to be [URL]
Then, in the login.aspx code, after I've authenticated and set the cookie, I look to see if there was a domain variable passed in to the URL. If so, I prepend the returnUrl with the domain and do a simple redirect.
I'm trying to write a simple ASP.NET 4.0 app, using Windows authentication to login. This is on my peer-to-peer home network. When I click to login, it instantly shows my Windows identity, so it looks as though I don't even need to login, as it's already done that for me. However when I then go to any other page in the app, it looks as though I'm not logged in. Why is that and how do I fix it?
I can use sessions but I wish to use Form Authentication method to implement this. how to achieve this using Forms Authentication or tell me a procedure to implement this using Forms Authentication.
I have a problem. I can't get current logged user to my application. Everything is fine on localhost. When I deployed an application
on IIS, it stopped working. I have Windows Authentication Enabled on my IIS. For every account which uses intranet, logged user is the same now, and it's an administration account.
Why application doesn't get real logged user, but administrator account ?
I have created a login page using the login control provided by the visual web developer and set up all the accounts and roles using the web admin tool. Everything works fine if I run the page within the developer but when I host it on IIS, The login does not work. It shows the invalid password message from the login control.
I currently have a web application deployed on our intranet and it uses Active Directory to authenticate the user.It all works fine. But now im asked to somehow grant access to the application for outside vendors that are not part of AD, but they still need to keep the functionality of the AD as they dont want to manage all the users that currently use the application.Is this possible in some way?Currently users dont need to enter a password or username as they are part of AD, but users who are not get the " You are not authorized to view this page..."message. Is there any way to avoid that message and allow them to login using their own password?