Transferring membership parameters

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?Z29sZGVucmF0ZQ==?=

    Transferring membership parameters

    Hi everyone,

    I have a client who wants a solution for the following problem. I'm not sure
    that its possible but I'll ask anyway.

    The client has joined godaddy's reseller plan. They've provided him with a
    complete working site that can be viewed here:


    Let's call this site 'godaddy's site'

    I have no access to the code of the site nor to its database. Actually all I
    can do is to add HTML code to some pages.

    The client has another ASP base (.NET 3.5) application to which I have full
    access (database and ftp). The site implements .NET membership system.

    Let's call this site the 'Client Site'.

    I need to creat a registration form on Client's Site. The form will
    register the new member on both sites concurrently. The part that register
    the new member on Client's Site is trivial, but I dont know if its possible
    to do so on godaddy's site.

    I'd appreciate if someone can inlight me on this issue.

    Thanks,
    David
  • Steven Cheng

    #2
    RE: Transferring membership parameters

    Hi David,

    From your description, you're going to implement a web application which
    work as a client, and it need to perform login/authentication against two
    applications, one local app that you have API access for the authentication
    db, while another application you can only access via browser ,correct?

    As for the application which you can only access via webbrowser, I think
    you should first try visiting its authentication or registering page to see
    how it works, whether it require you to put some image based authenticode.
    If not, you can consider writing some code(via the HttpWebRequest class in
    .NET) to perform programmtic login or user registering.

    Here are some reference about using HttpWebrequest to perform programitc
    http post:

    #Sample forms authentication test in C#

    test-in-c.aspx

    #Working with HttpWebRequest and HttpWebResponse in ASP.NET

    quest_and_HttpW ebResponse_in_A SP.NET_114.aspx

    Sincerely,

    Steven Cheng

    Microsoft MSDN Online Support Lead


    Delighting our customers is our #1 priority. We welcome your comments and
    suggestions about how we can improve the support we provide to you. Please
    feel free to let my manager know what you think of the level of service
    provided. You can send feedback directly to my manager at:
    msdnmg@microsof t.com.

    =============== =============== =============== =====
    Get notification to my posts through email? Please refer to
    http://msdn.microsoft.com/en-us/subs...#notifications.

    Note: MSDN Managed Newsgroup support offering is for non-urgent issues
    where an initial response from the community or a Microsoft Support
    Engineer within 2 business day is acceptable. Please note that each follow
    up response may take approximately 2 business days as the support
    professional working with you may need further investigation to reach the
    most efficient resolution. The offering is not appropriate for situations
    that require urgent, real-time or phone-based interactions. Issues of this
    nature are best handled working with a dedicated Microsoft Support Engineer
    by contacting Microsoft Customer Support Services (CSS) at

    =============== =============== =============== =====
    This posting is provided "AS IS" with no warranties, and confers no rights.


    --------------------
    >From: =?Utf-8?B?Z29sZGVucmF 0ZQ==?= <goldenrate@nos pam.nospam>
    >Subject: Transferring membership parameters
    >Date: Wed, 19 Nov 2008 15:29:01 -0800
    >
    >Hi everyone,
    >
    >I have a client who wants a solution for the following problem. I'm not
    sure
    >that its possible but I'll ask anyway.
    >
    >The client has joined godaddy's reseller plan. They've provided him with a
    >complete working site that can be viewed here:
    >https://www.securepaynet.net/gdshop/...rog_id=438541&
    ci=3271&
    >
    >Let's call this site 'godaddy's site'
    >
    >I have no access to the code of the site nor to its database. Actually all
    I
    >can do is to add HTML code to some pages.
    >
    >The client has another ASP base (.NET 3.5) application to which I have
    full
    >access (database and ftp). The site implements .NET membership system.
    >
    >Let's call this site the 'Client Site'.
    >
    >I need to creat a registration form on Client's Site. The form will
    >register the new member on both sites concurrently. The part that register
    >the new member on Client's Site is trivial, but I dont know if its
    possible
    >to do so on godaddy's site.
    >
    >I'd appreciate if someone can inlight me on this issue.
    >
    >Thanks,
    >David
    >

    Comment

    Working...