UAG (Microsoft Forefront Unified Access Gateway) Authentication For .NET Website?
Mar 19, 2011
am absolutely clueless on this. I've been told that the web application I'm building (.net 4 / mvc3 / c# / sql server) will be "sitting behind UAG so we can silently authenticate". I've no idea now how to approach the authentication part of the build in my dev environment. Should I just use "windows authentication"? Will that be the required setting when the application goes live? How do I test the authentication?The people asking me to do this are currently just getting started with UAG too do so any help, pointers, .To put the situation in context, this application will be accessible via the company network internally, and also via the web externally (via UAG portal, of course). The company is on Active Directory, and all I actually need to "pull through" to the application to get further people entity data is the AD username.
Im developing an e-commerce website for someone, i just needed information on whats the best payment gateway method using ASP.NET 2.0?
The second question is an important one, becuase its e-commerce and need to implement a payment control on the website for users to pay by there credit or debit cards, what i wanted to ask is that the site will need https. I have looked on EUKHost a web host and they charge for windows copper server for £39.99, but with https its £89.99. now my client is asking me what i should do becuase he thinks its expensive and needs to look at his budget. So i just wanted to ask HTTPS or without HTTPS?
I would advise him with HTTPS because if a user wants to buy an item and finds out that there is no secure payment on the site then it might push away users from buying items on the site.
I would be grateful if you could give your feedback.
I have 4 file uploader in my form to upload 4 images in the DB for each article submitted. My issue when I want update/edit my article with some new pictures and I want delete or update the old pictures with the replacement with the new one.
How I can implement it? I am using ASP.NET based on VB.NOT .... NOT C#
I am having a problem with webforms in my website which i am developing it into VS2005. the changes like inserting new table on existing web form of website not getting displayed on webform when i debug it.
This could be very straight forward for some of you, but I got caught up. I am doing very simple test - browsing from IIS Manager to see the default page or "under Construction", however I am being challenged to provide my login credential . When I provide my login credential, I am able to see the default page. I wanted to see the default page without providing my credential since Enable anoymous access + basic authentication I am simply wanted to see the default page asit is working on other servers except this one. I have included screen print to make sure may question is clear.
I have a web sevice using windows securitybasic type, published in a Forefront TMG and I work well: example of code
[Code]....
however, this code will not work if I have the Forefront TMG instead of "basic" change it to "form"Error displayed;The request failed with an empty responseheader:
I have a popup window that is displayed from the main form. I use a timer to refresh the data in an update panel on the popup page. The users keep the page open but ypically go back to the main page which then covers the popup. The problem I'm having is every time the timer event occurs, the popup page jumps to the forefront. How can I perform the updates without the page coming into focus automatically?
I am writing an application on my PC to insert record on a Microsoft Access database on another pc that has static ip address remotely.I can ping the remote address of the PC that I want to access without problems. The access database is in the folder c:inetpubwwwrootdb.mdb.
I have the code below but when I run it I am getting the following error:
error on ther server the object model couldnºt be found
OleDbException 0x800a2011 <%@ LANGUAGE = VB Debug="true" %> <%@ Import Namespace="System.Data.OleDb" %> <%@ Import Namespace="System.Net.Mail" %> <%@ Import Namespace= "System.Web.UI.WebControls.Menu" %> <%@ Import Namespace="System.Data" %> <script Runat="Server" language="VB"> public sub button_click(s as object,e as EventArgs) dim ssql as string dim strconn,objconn,rs,dbcomm Dim ds As New DataSet Dim da As OleDbDataAdapter = New OleDbDataAdapter objconn=new oledbconnection("Provider=MS Remote; Remote Server=http://196.45.161.123; Remote Provider=Microsoft.Jet.OLEDB.4.0; Data Source=\db.mdb;Persist Security Info=False") objconn.open () dbcomm=New Oledbcommand("employee",objconn) dbcomm.commandtext="insert into employee values ('mostafa',7,'tanzania')" dbcomm.Connection = objconn dbcomm.ExecuteNonQuery() objconn.close () end sub </script> <html> <Head> </HEAD> <BODY BGCOLOR="White" TOPMARGIN="10" LEFTMARGIN="10"> <form Runat="Server"> <asp:textbox id="t1" Runat="Server" text="type" /> <asp:button id="b1" Runat="Server" onclick="button_click" text="clickme" /> </form> </BODY> </HTML>
I still a beginner and i want to create a website asp.net with c# and microsoft acess as a database ,the problem that i can't insert new lines in my database
I am planning to start learning asp.net mvc. And also I want to learn Microsoft's Data Access application block. But I dont want to waste time in MDAC block if theres a better option to go for, or if MVC provides any good feature than MDAC. As I have heard MVC architecture automatically generates code.
Currently i am developing ASP.NET AJAX server control in which i am using jquery code. Inside jquery event, i wish to access the microsoft ajax object. If it is not clear, find the below code example,
I am developing a simple web app on Visual Studio 2010 on Vista, using Local IIS. When I ran I got this error message:
Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005 Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)).
For this app, I did the following.
-- Add Reference of Microsoft Excel 12.0 Object Library from WebSite option on Visual Studio 2010.
-- Here is the code: (Error occured @ Dim xii2 As New Excel.application). The identical code and idential Add Reference were fine when developed under window .net asp
application, not web app. Imports Microsoft.Office.Interop Partial Class _Default Inherits System.Web.UI.Page
I have a problem and I could not solve it. Hope you can write a sample code for me. I have a Microsoft Access database, and in asp.net website, i draw a grid view on the design page. I also configure the source data access. It works, but display all the data in the database. i want to display all the data which is related to John. sql = "select username, customer_name, phone from db where username = John" how do i configure the data grid view?
It looks that the old SqlHelper class from the Microsoft Enterprise Library has been mostly replaced by the Database class which is included in the new Enterprise Library version 5.
I have a very simple and trivial example: using Microsoft.ApplicationBlocks.Data; private void PopulateCheckBoxGroup() { const string strConnTxt = "Server=(local);Database=DataBindTests;Integrated Security=True;"; const string strlSql = "select Technology from PreferredTechnology where ParentId = 1"; CheckBoxList1.DataSource = SqlHelper.ExecuteReader(strConnTxt, CommandType.Text, strlSql); CheckBoxList1.DataTextField = "Technology"; CheckBoxList1.DataBind(); }