Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

There is a WebMethod called Reverse in GetReply.aspx.cs. Some of the code has already been filled in for you. Please add C# code so the

  1. There is a WebMethod called Reverse in GetReply.aspx.cs. Some of the code has already been filled in for you. Please add C# code so the WebMethod:
  1. Accepts a string as a parameter from the web page.
  2. Reverses the string.
  3. Return the reversed string to the web page.

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.Services;

public partial class GetReply : System.Web.UI.Page { [WebMethod] public static string Login(string userName) { var acceptedNames = new List {"nana", "admin", "student"};

if (acceptedNames.Contains(userName) ){ return "Accepted"; } else { return "Denied"; } }

[WebMethod] public static string Reverse(string strInput) { string strReturnVal;

// Replace this with code to reverse the string strReturnVal = strInput;

return strReturnVal; }

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 19 21 2012 Proceedings Part 3 Lnai 7198

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284922, 978-3642284922

More Books

Students also viewed these Databases questions

Question

What is Taxonomy ?

Answered: 1 week ago

Question

1. In taxonomy which are the factors to be studied ?

Answered: 1 week ago

Question

1.what is the significance of Taxonomy ?

Answered: 1 week ago

Question

What are the advantages and disadvantages of leasing ?

Answered: 1 week ago

Question

Determine the roles of spatial layout and functionality.

Answered: 1 week ago