Customer Domain "appear Everything From Subdirectory" To A Multi Customer Application
Mar 9, 2011
I'm not really sure where to start with this and therefore can't pick a more specific area to post. At first I though this might be something I would do in IIS7 but on reflection i think it needs to be at the application level. I am developing an application which will as part of it's function provide a unique website (custom CMS) to my customers. Each person who registers will have their own site accessible via a url such as [URL]. I need someway to take this and work out which customer it is and then load the rest of the pages with their content. So the site may have a home, about us and news pages for example and be themed to the customers requirements. Each of the pages will be the same aspx file and application for all customers but the content and style will be loaded from the database at runtime. I'd like for the duration of the visit for everything to appear as if from this subdirectory without actually creating them for each customer. so thy could visit [URL] but it actually loads [URL] and loads the content based on the customer site the visit is viewing.
I'm not really sure how to approach this. Maybe using a session value to store the customerid for the site the person is viewing which could be calculated from the URL on the first visit. I presume other people have done something simialr in the past. Where it gets more complex is if I then want to offer customers to have there own domain name pointed to the site. In that scenario they would have say [URL] which points to my server and bound to my application [URL]. All pages would have look as though they were on the customer website such as [URL] but still point to [URL] in the background and also somehow link to the customerid in the database to load the correct content.
View 1 Replies
Similar Messages:
Jan 13, 2010
Now i have a database table holds all info of my (customers) such as first last names and address phone number etc ... and i able to edit delete update their info from my side using the admin page that contians gridview i created. If several customers logged into their account pages, and each one wants to update his information,
How can i let the specific customer info be showin on his page for each customer? (I have one databse table and it contains a primery key column called "MemberID") how can i make the new subscribed user get his info that he did input or i would like to add to it, showin on his account page?
View 8 Replies
Sep 3, 2010
How to develop an application works as (Virtual Mailbox for customer)?
View 7 Replies
Apr 16, 2010
I'm working on a ASP.NET (C#) site that pulls most of its data from Dynamics CRM over SOAP using Microsoft's CrmService SDK. I'm at the point where a query has returned an entity with a property of the type Customer. I need to get the name string of that customer record, but cannot figure out how to do so. By doing a little guess work I figured out that what I have is GUID for the customer. How can I use this GUID to get the customer's name as a string? Relevant Links:
CrmService Docs
Customer Property
Customer Class
View 1 Replies
Jul 15, 2010
I need to create a customer workflow for CRM dynamics , I have visual studio 2010 Express edition install in my machine. I most of the examples in web says Go to Visual studio 2005 or more, then slect Workflow Project type in new project dialog box. but in express edition i cannot see workflow as a project type, is this because of express edition or do i need to run any thing to get this project types in to VS express.
View 4 Replies
Aug 26, 2010
How can i query a dataset? I got a dataset from a query "select * from customers", now i want to query the dataset and get the customer name where id = "156".
View 10 Replies
Dec 21, 2010
(1) Customer would like data resides with their machines/server without expose the data to internet
(2) I want ASP code resides in remote PC in my office
So the idea is they access (via internet) my office PC/server with ASP codes on it and use the software, and the client PCs use data on their own server and these 2 combined to produce the result. I know this seems impossible but any idea to fine tune and still achieve (1) +(2) practicably?
View 2 Replies
Oct 6, 2010
I have a c# asp.net web application in .net 1.1. The web application is a website in IIS and works online at the world wide web. There are very much customers all over the world of that website and everything works fine. There is one customer in germany where it doesnt work fine. When he press on a button "New" he gets a popup with the error:
[Code]....
In the past he didnt get this error. I ask this customer to check the website on another machine in his organisation, but he still get this error. So its something in the organisation. Some machine settings or network settings I think, because other customers didn't get this error.Someone know why this organisation get this error ? Is it possible that the problem is at the machine or network settings? Or something with the web browser version/settings?
View 2 Replies
Mar 27, 2010
I need to made a table like that:
Table customers
Name :
Number of customer:
So i must have a unique of customer , for every customer. Then if i try to insert a repeat number i will have a label saying that customer numer already exist. So you must choose this one. And the numer will appear. How can i do the code for a unique customer number ?
View 6 Replies
Oct 11, 2010
How do you create your web site data admin for your customers. Do you do them programatically or do you use any specific tool?
I have been using AspMaker and is not a bad option but I'm sure there are a few more options out there. I've seen that MS has a Web Data Administrator but for me it looks more than an sql server web admin tool rather than a frontend that has the business logic.
View 1 Replies
Oct 4, 2010
insert into @rawdata2 (cust,lysale,lycost,load_year)
select cust,sales,cost,load_year
from @rawdata
where load_year=@yr2
insert into @rawdata2 (cust,ytdsale,ytdcost,load_year)
select cust,sales,cost,load_year
from @rawdata b
where load_year=@yr1
how can i make them line up correctly depending on the customer name it will put it in the right field. rawdata 1&2 are tables i created in memory.
View 14 Replies
May 4, 2010
I need the simple task of populating a form from a dropdown if customer IDs.
The problem is I'm new to MVC and I no longer have events, so I'm not sure how my dropdownlist can have a postback event that does one thing, and my update button can have a postback event to do another thing.
Example, this only goes to the post action, so how does it know to load the customer or do an update:
[Code]....
View 4 Replies
Feb 8, 2010
I have a website that runs fine. A customer calls in complaining any functions he ntries he gets a 'Windows Internet Explorer' popup message; 'Sys.WebForms.PagerequestManagerParserErrorException: The message received from the server could not be parsed. Common causes for this error are when the response is modifed ... etc.'. (I can upload a snapshot screen if someone tells me how) I logged under his account on other PCs, they all work fine. Customer runs IE7.0 with windows XP, Service Pack 3. I just cannot recereate this problem. Would anyone know the cause of this? Could this be something on customer's network or firewall?
View 2 Replies
Mar 2, 2011
This form has some information for making a reservation for a customer at a dining venue. If the customer is a "known" / "returning" customer id like to fill the form based on the customer ID. Some of the things on the form are ...
textbox=CustomerID
Input Button
textbox=FirstName
textbox=Lastnemt
Using MVC, What would be the best way to go about going back to the server to find the customers first / last name and posting it back to the values in the textboxes ? Ive been trying to work with AJAX & JQuery but i cant seem to update the values in the textbox using AJAX.
View 2 Replies
Apr 30, 2010
I need to create functionality for the users to add customer info (first, last name, address, e-mail) to MS Outlook (checking for duplicates first). Is it possible at all? Keep in mind that users have all kinds of OS on their computers: Windows XP, Windows Vista, Windows 7.
View 2 Replies
Mar 4, 2011
I have a table to store customers information.
<asp:ComboBox ID="cboCustomers" runat="server"
DataSourceID="sdsCustomers"
DataValueField="CustomerID"
DataTextField="CustomerName">
</asp:ComboBox>
<asp:Button ID="btnAdd" runat="server" Text="Add Combobox" OnClick="btnAdd_Click"/>
What i'm trying to do is, add a new combobox to select another customer and repeat this as necessary, 2, 3 or more.
View 4 Replies
Feb 2, 2011
using sql server 2005. I have table setup as follows
Table: Orders
Col: CustomerID
Col: OrderID
Col: OrderDate
so a given Customer can have many orders in this table however I only want to return the last order (using OrderDate) for each customer. how do you do this? I assume that I need to group by customerID and then use max on the OrderDate but not sure of the exact syntax.
View 4 Replies
Mar 4, 2010
I have see many websites that they show nice tab headings with STEPS: 1. Sign-in, 2- Billing info, 3 - Payment, 4 - Place order While customer ordering items, he/she goes through these steps and gets an experience of using a wizard based approach. one Also this gives good feedback of what are steps involved in the order processing Any details on how to do this wizard kind of functionality in ASP.NET MVC? Is there anything in JQuery UI that might be helpful? I know that I can simply use some text tabs and use different background color for selected step: But wondering if there is more standard or better ways to do this with: ASP.NET MVC, JQuery UI etc.
View 2 Replies
Jul 2, 2010
I am trying to find out if what I am looking to do is achieveable. And if it is - where I would start. We have users who are completing an online quiz which they submit to SQL, we then extract the data and using Mail Merge in MS Word send them a personalised certificate by email. What would be better is that when they submit the data to the DB that the certificate was generated and emailed directly back (this needs two fields from the form data to drop into the form template).
View 1 Replies
Jan 28, 2010
Im currently trying to send an email confirmation once a user signs up. Ive looked at links already on the asp.net forums and have had no luck getting it to function. My Sign up page reads data to a SQL Server correctly, what im trying to do is when they click BtnSignUp they will automatically be sent an email confirning that they registered. within my database I have a table "tblUser" and the field within it are "Email" "Password".
View 3 Replies
Jan 12, 2011
I have developed a desktop program for a customer.I have used SQL Server on my ofiice while i am developing.Now its time to install the program my customer's office,Which SQL edition i should use? (At least)Only usage for them about SQL is: Backup and storing datas.
View 4 Replies
Jun 11, 2010
In our vb net 2003 page , I want if the calling page is not available show 404 error page.
in my Web.config page
I have
[Code]....
what can I dod , let the 404 get auto called.
View 1 Replies
Nov 22, 2010
next week i'll have to install the ASP.NET Website on a customer server on site. All server side requirements for hosting a ASP.NET website are met.
So how do i now create a installation / setup for the website to make sure that everything runs fine?
I think it's important to mention, that i'm using 3rd party compos (DevExpress).
For example where i have to install (path) the site?
View 4 Replies
Jun 11, 2010
i am using paypal in my web site. once the customer hits the submit button, they can be redirected to a customized page on my website that says "Thank you for your online payment".
i want to send a mail also to him by capturing his mail id.
View 1 Replies
Jan 8, 2010
developing a product (like shopping cart) in ASP.NET/C# 3.5. It is common for all the shopping sites. The following is my task,I need to get the datas from customer database (It may be SQLServer, MySQL or Oracle and the database structure also different). For example i need the following items for my product from the customer database,Category ID (Category or Product) Category Name Parent Category Description Cost Quantity Thumbnail image url Original image url Related products So how to get above values from the customer database and what should be the best concept to do this because i don't know anything about customer database (I don't know whether it is SQLServer or MYSQL and also i don't know the database name, table name or column name).
View 4 Replies