TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Bondari Developers
NA
10
9.7k
Retrieve value from the parameter in web service Get Method
Mar 11 2016 2:40 AM
Hello c# Corner,
I want to Retrieve value(data) from the parameter in web service Get Method and save to JSON. This is the Function that gets Data(values) from the client side. I and I want to save it to JSON then I will use to charge the Customer Card.
[WebMethod]
public string GetSubscriptionRequest(string Name, string Email, string CardNumber, string ExpirationMonth, string ExpirationYear, string CardCVV)
{
try
{
return Name + "," + Email + "," + CardNumber + "," + ExpirationMonth +"," + ExpirationYear + "," + CardCVV;
//Please, Anybody to help with JSON Function to retrieve the Data(values) from the parameters which are above.....// Code Here
}
catch (Exception ex)
{
throw new NotImplementedException(ex.Message );
}
}
Reply
Answers (
1
)
datalist use textbox and button click on button validation
bind multiple image in repeater from database