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
Yogesh Ghorpade
NA
762
147.8k
I Want To Convert This Code In To c#
Mar 5 2019 12:54 AM
Hellio Friends I Want To Convert This Code Into C# Please Help Me For This
Code : -
var loginUrl = 'loginAPI';
var username = 'UserName' || ''
var lowercaseUsername = username && username.toLowerCase()
var password = 'Password' || ''
var body = {
username: lowercaseUsername,
password: password
};
body = JSON.stringify(body);
fetch(loginUrl, {
method: 'post',
headers: {
'content-type': 'application/json'
},
body: body
}).then(function (response) {
return response.json();
}).then(function (data) {
// alert(data.idToken);
document.getElementById('Token').innerHTML = data.idToken;
});
Reply
Answers (
7
)
problem with pie chart
want to get more detail when clicked on a row of gridview