Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6990027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:17:32+00:00 2026-05-27T19:17:32+00:00

I here want to call another website url, login into it, and use one

  • 0

I here want to call another website url, login into it, and use one of its function using my asp.net project. I’m working on a project in asp.net where my web based program will send sms to mobile phones. Since I don’t want to subscribe to any gateways or similar, I found this website:

http://sms80.com

Now what I want to do is, from my asp.net page I need to access this website, login and use its service but all this must be done hidden programatically in my asp.net page.

I somehow inspected that websites element such as login name textbox and password textbox. I am not trying to hacking but I just need know the process I do in that website( I login using my account, then write my message and write the mobile num and send) programaticallyin my asp.net.

I did some research and found out that I can send or pass values in url straight such as:

your_url.aspx?your_url_variable=" + @variable_from_form

but it doesn’t seem work. Is it any other way to do it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T19:17:32+00:00Added an answer on May 27, 2026 at 7:17 pm

    If the other website doesn’t have an API loging into it programmatically is not a simple process.

    It requires a lot of exploratory work and analysis of how the website you’re trying to login works. The process consists of first determining what is being sent in the request/response communication post data with a tool such as Fiddler.

    Then, you need to construct a series of GETs and POSTs using either HttpWebRequest/HttpWebResponse classes or WebClient class so you can mimic the way the browser does it.

    An example would be:

    string url = "http://sms80.com";
    HttpWebRequest http = (HttpWebRequest)WebRequest.Create(url);
    http.CookieContainer = _cookieJar;
    http.Connection = "Keep-alive";
    http.Method = "POST";
    http.ContentType = "application/x-www-form-urlencoded";
    string postData="username=" + username + "&password=" + password;
    byte[] dataBytes = UTF8Encoding.UTF8.GetBytes(postData);
    http.ContentLength = dataBytes.Length;
    Stream postStream = http.GetRequestStream();
    postStream.Write(dataBytes, 0, dataBytes.Length);
    postStream.Close();
    // see if we're logged in
    HttpWebResponse httpResponse = (HttpWebResponse)http.GetResponse();
    // continue (read the response etc.)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to call two url in one webview one after the another but
All Here i want to run .sh file via system call in android NDK.
Here is what I want to achieve: I have RadGridView, let's call it gridView,
Here i want to do UDP Socket programming in C. I have one device
Please find the code at http://jsfiddle.net/wlogeshwaran/NGL8P/4/ Here i want to make the 'hi' ,
I read here it is possible to call another constructor Calling constructor from other
I am working on sencha2.0. I have one login form and I want to
I have a function and I am trying to call that inside another function.
Possible Duplicate: How to call another PHP script from a PHP script? I want
I have this gesture swipe method that I want to call from another method

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.