C# - Creating A Subscription Based Website?

Apr 12, 2010

I'd like to update my website to make it subscription based. It's a ASP.NET Web forms project. I am looking for the following functionality:

Ability to have users sign up for
different plans (Gold, Premium etc)
Ability to have users upgrade /
downgrade to and from plans
Ability to hook this up to a Payment
processor
Ability to have a credit based
system (User buys x credits for $y)
as an alternative to plans in (1)

Most of this functionality (if not all) is supported by a large number of websites which makes me think I can leverage on an existing framework instead of re-inventing the wheel.

View 3 Replies


Similar Messages:

Access :: Creating A Website Based On Database?

Oct 6, 2010

I have created a database in Access 2007 for a university. Now, a new functionallity is required. What I need to do is a search function where students can search the database online. Now, they can only search using a front-end which is read-only, but they need to use a computer with Microsoft Access (or Runtime) and they need to be connected to the back-end which is located on a server.

make the database to work online? I am a novice to web programming. Which is the easiest way and how do I start?

The database has fields with Attachments. The students can search the database and open Attachments connected to the found posts, this part needs to be online. The personnel can edit and add data using a more complex front-end. This does not need to be online, they can still use Access.

View 2 Replies

How To Build Subscription Website

Aug 23, 2010

I have come up with a business idea that I would like to follow, which involves me creating a subscription website with multiple levels (I'm thinking probably around the 10 mark). While I'm pretty good with VB.Net and ASP.Net, I unfortunately have no idea how I might be able to go about creating a website that would require the user to pay a monthly/yearly subscription (which would be different depending on which level they wished to choose).

View 2 Replies

Subscription Website Software?

Jun 30, 2010

I've been tasked with developing a website that requires a subscription fee to access certain areas of the website, to be paid quarterly. It may also be necessary to pay out to members a small amount but nothing is confirmed yet. The website will be built in ASP.Net.

View 1 Replies

Integrating Paypal Subscription With Website - Tutorial?

Sep 22, 2010

Does anyone know of a good tutorial regarding integrating paypal subscriptions with a .NET website. I have searched online and most of the articles I've found are 2+ years old, so I'm unsure how accurate these would still be.

View 1 Replies

Configuration :: Configuring Original Settings For New Website Based On Site Files From 1st Website & Password Q

Oct 19, 2010

I want to make a 2nd website and am using a copy of the site files from my 1st site built for me, I added them via FTP to the hosting company. I realise when I edit the new site via the CMS it is editing both sites plus when I try to change anything to the CSS file I get the following error -

C:inetpubvhosts*****mysite******httpdocsapp_themessiteStyleSheet.css

So my questions are what do I need to change to be able to deploy a new site with the files I have to make a new site?I also don't understand where the password is coming from, I can see the User ID comes from the database. in the Asp.net connection strings are the following:

site Data Source=sql7.hostinguk.net;Initial Catalog=***;User ID=***;Password=*** - Where is this password coming from?

membership Data Source=sql7.hostinguk.net;User ID=***;Password=***;persist security info=False;initial catalog=***;

View 2 Replies

VS 2008 Creating Role Based Authorization?

Feb 9, 2011

I have seen articles on Role Based Authorization in MS-Sql server-Asp.net but i did not find any article in MySql-ASP.net/vb.net, i am acheived this concept using session user name i am enabling certain parts of website to group A and certain parts of site to Group B but when i have more groups i cannot use this method.

Myrequirement is:

In Web applications, typically there exist certain parts of the site that only certain folks, or groups of persons can access. For example, imagine Web site used to administer the content on a company's public Internet Web site, where the public Web site lists products sold by the company. From the administrative site, all company employees might be able to make minor changes to the products' descriptions, quantity, and other such non-essential information. However, perhaps only a subset of trusted employees might be able to change the products' prices. And even a smaller subset of employees would be able to add new products or delete existing products from the database I would be delighted if any one provide the solution

View 9 Replies

Subscription Payment Processing With .NET?

Apr 18, 2010

I would like to create a subscription based website with users getting charged every month. I know I have to create an account with paypal or authorize.net. Do these payment providers automatically bill the user every month? How would I take care of offering the service free for 30 days and start billing after that?

Also, I've heard of middle men services like spreedly, chargify. Where do they fit into the equation? Can someone help me wrap my head around these concepts?

Considering, I am based in the U.S but would like to have the payment provider accept any kind of currency.

View 1 Replies

Integrating PayPal Subscription With C#.Net 2.0?

Aug 4, 2010

I am having a problem of integrating paypal with my site. All the process works great i.e., site successfully redirects to paypal and the users can successfully subscibe, but the problem is the "notify_Url" variable redirects the paypal to my site page but when I send a request from that page to validate the payment process the paypal always send the response as "Invalid". I am using a Subscribe button of paypal.

View 1 Replies

SQL Reporting :: Move Subscription To New Server?

Sep 23, 2010

In my live server we have total nos of approx 200 reports and 50 email subscriptions created by us. Now we are planning to change our existing hardware configuration and due to some other reasons, now the current live server we will not use in future, In view of same we want to move our all our reports and email subscription to other new server and that new server will be our next live server.Now the problem is that i have 50 email subscription which i have created in old server so how can i move this subscription to new server? Reports can be deployed to new server by taking the backup. Is there any other concern in such situtation?

View 1 Replies

ADO.NET :: Converts A Datarow To BaseClasses.Subscription?

Jan 23, 2011

I have a few procs which use a datareader as illustrated below:

[Code]....

In the real scenario there are many more fields than the 2 in the example so each time I make a change to BaseClasses.Subscription I have to change code throughout. I already have a method which converts a datarow to BaseClasses.Subscription which I call like this:

public BaseClasses.Subscription RowToSubscription(dr)

It would be great if I could do it with the datareader too, something like this:

[Code]....

View 1 Replies

Creating Dynamic DataList Controls With ID's Based On Bound Data - Finding Alternative

Jun 28, 2010

As a workaround for the fact that asp:Checkboxes don't have values, I am attempting to dynamically create the ID's of checkboxes in a DataList so that it inserts the primary keys into the control ID. This is surprisingly difficult.

I have placed a PlaceHolder in my DataList ItemTemplate, then in the ItemCreated I create the checkboxes using string.Format("Checkbox{0}", DataBinder(e.Item.DataItem, "ID")). The problem is that this only works in a non-postback condition, as on postback the DataItem is null. And of course ItemDataBound isn't called on PostBack so that won't work either.

I can't seem to find a good way to handle this short of if (IsPostback) dataList.Bind(), which i don't think is a good way to do it.

Can anyone provide me with any alternatives here?

View 1 Replies

How To Create Subscription Programmatically In Reporting Services

Mar 2, 2010

I need to create a subscription for my SSRS reports in an asp.net page.I can show the reports in a reportviewer using Reporting.WebForms. SSRS is on the another computer in my network. For reportviewer, I use "admin" and "pass" for credentials which is the SSRS machine's admin username and password and it's ok. And admin has all the roles for SSRS reports. But when I try to createSubscription via ReportingService2006 web service I can't make it. I'm not a professional nor amateur. searched the web a lot. tried this and the odetocode version of this: 1. technet - something similar 1

View 1 Replies

Security :: Creating A Interface For User Role Management Based On Built In Membership Provider?

Feb 18, 2011

I am creating a interface for User Role Management based on built in membership provider.I want to display all the roles as check boxes for a selected user. I am able to display all the roles in the database, but not able to load the specific user roles. For example, I am able to publish role 1 role 2 role3 role 4 as check boxes. But if the user is already flagged as role 1 and role 3, I am not able to show that data (role1 and 3 should be checked when form loads, but right now, they are not checked)...How do I get the roles as checked boxes display on a page.I am using a repeater control to display roles as check boxes on the page..

<asp:Repeater ID="UsersRoleList" runat="server">
<ItemTemplate>
<asp:CheckBox runat="server" ID="RoleCheckBox" AutoPostBack="true" Text='<%# Container.DataItem %>'

[code]...

View 1 Replies

C# - Creating An International Website?

Jan 4, 2011

The question might sound weird, but I am planning to create a asp.net website, which when fully done, will ideally cater to all countries.I am currently in the architecture phase.. and is there anything that I should keep in might when doing this?

like,saving all datetime fields in utc

using user's timezone to display all time related data

all labels in the website to be localizable

is there anything else?

View 4 Replies

C# - Creating Versions Of The Same Website?

Jul 5, 2010

My new assignment at work is to create a second version of our existing web application. Currently, our application supports only full time brokers, but now we our launching a second site specifically for part time brokers.

The new site will be almost identical to our existing site with the following exceptions:

It will have it's own branding. A couple of the user controls used for displaying information will be different (but none of the pages will be different). Our existing users should not have access to the new site and vice versa. It needs to be easy to test both versions of the website from within Visual Studio easily. We want to reuse as much our existing code as possible. I have 2 weeks to do this. I'm hoping that this is a common scenario and someone out there has some advice for how to accomplish this.

View 4 Replies

Creating An Scalable MVC Website Without Using Session?

Sep 16, 2010

I'm working on a Web project using Asp.Net MVC, which I'll have to deploy to a farm environment.

I've read a lot of articles and I'm thinking on disabling completely the SessionState, I think this would make a more robust application, and will save me a couple of headaches (Everything I've read tells me that handling sessions on a farm isn't trivial).

There are some things that I still don't have totally clear with this approach though, the main one being the authentication/authorization process. Basically I'm not sure of how (if?) I can handle user sessions if there's no SessionState enabled on the server.
If a user logs into the web site and then tries to access another page, how can I know that the user is already logged in?

I know using cookies is insecure, I thought of a mix of cookies with the session Id stored in the DB, but I suppose that if I disable SessionState I won't have access to the session id either.

View 3 Replies

Difference Between Creating Web Application And Website?

Feb 6, 2011

Why does an assembly get created when I am building a web site? I mean a web site and not a web application.

View 1 Replies

Configuration :: Creating / Hosting Website On IIS 7?

Mar 31, 2011

I have created website in Visual Studio using asp.net C#, and host the website in IIS.

Now i want when i right click the website in IIS and select browse, page will get executed, but this is not happening with my case, when i browse the website it shows all the content of website which i created in Visual studio, as shown below

To parent directory

3/29/2011 4:55 AM <dir> App_Data
3/29/2011 4:55 AM <dir> bin
3/29/2011 4:55 AM 528 pageName.aspx
3/29/2011 4:55 AM 1234 pageName.aspx.cs
3/29/2011 4:55 AM 1144 pageName.aspx.designer.cs
3/29/2011 4:55 AM 4393 pageName.csproj
3/29/2011 4:55 AM 1288 pageName.aspx.user
3/29/2011 4:55 AM <dir> obj
3/29/2011 4:55 AM <dir> properties
3/29/2011 4:55 AM 7469 web.config

when i click on 3/29/2011 4:55 AM 528 pageName.aspx, page will get executed.

But what i wanted , when i browse the website , this page "3/29/2011 4:55 AM 528 pageName.aspx" will get executed automatically, i do not suppose to click on 3/29/2011 4:55 AM 528 pageName.aspx page manually

View 3 Replies

Creating A Website With Multiple Applications?

Jan 25, 2011

I have a question concerning website structure. I have a website which will be an intranet site. On this site I will have a main page that has links to different apps that will reside in this site. I want to separate the apps in their own folders.My question is do I just create a folder for each one or do I create a new webpage within the main webpage for each one? The reason I am asking is I use three layer model and my object data classes and db classes need to reside in App_Code folder. Do I put all these from every app in the one folder(on the main page) or if I create a site within a site can each have it's own App_Code folder. Also if I create the site within a site will I be able to redirect to different pages just by relative URLS(../cashmanagement) and everything work OK.I am pretty new to ASP and this is my first site with mutiple programs.

View 3 Replies

Creating An AJAX-Enabled Website?

Jun 12, 2010

I'am trying to follow an ASP.NET with AJAX Training. At certain moment, they deploy an AJAX-Enabled Web Site. but for me I can't found this option (I'm using Visual Studio 2008).

Even if I installed the Ajax Control Toolkit it still not working for me !!

View 2 Replies

Security :: Creating Alogin For The Website?

Dec 20, 2010

creating a fantasy football website and i needed some help on creating it, i am having trouble creating a login for the website, can anyone help? i would be most greatful. thank you for your time reading.

View 2 Replies

Web Forms :: Creating A Website With SMS Functionality

Sep 3, 2013

I've done a lot of research regarding sending and receiving SMS, but all of the examples are for Windows Form. I need it to be for Web Apps. I know that i would need to use AT Commands to send and receive SMS. But I don't get how is it being used.

View 1 Replies

MVC :: Creating Audio / Video Library Website?

Mar 25, 2010

I need to create a audio / video library website. Users should be able to browse / view the available video files in a player. Please give me some reference links / projects and also let me know the file format in which the streaming occurs fast.

View 5 Replies

WebMatrix :: Creating A Mobile Version From Website ?

Feb 13, 2011

creating a mobile version of the website I have created in WebMatrix. I have created the website and the email form and the data input forms and all seems to work ok with the SQL Server Compact 4 database, but I now want to create a version to run on my smartphone (it's a htc hd2 running windows mobile 6.5.3, though I think I may have to produce it to run on windows mobile 7 -feel free to comment).

There are some good tutorials out there for WebMatrix generally but I have yet to find anything covering the scenario above.

The other query relates to deploying the WebMatrix site. I know there is webhosting offered on WebMatrix, but I can't find a simple guide to what spec to be looking for in any package offering webhosting. (poor student looking for cheapest offer for trialling practise sites) I think I have come to the conclusion that if they offer Microsoft ASP.NET 4 then that should be ok for the Razor syntax and cope with the cshtml, and that at the basic level I am working at I don't need an SQL database as part of the hosting package as the compact travels as a file with the rest of the site.

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved