UrbanPro
true
Rohit Sakunde SQL Programming trainer in Mumbai

Rohit Sakunde

Trainer

Kamothe, Mumbai, India - 410209.

Referral Discount: Get ₹ 500 off when you make a payment to start classes. Get started by Booking a Demo.

Details verified of Rohit Sakunde

Identity

Education

Know how UrbanPro verifies Tutor details

Identity is verified based on matching the details uploaded by the Tutor with government databases.

Overview

I have total 6 years of experience in Microsoft technologies.like C#, SQL server, ASP.NET MVC, VB.NET, JQuery. I had worked in well know MNC Capgemini, TCS, Mastek, Shawman software. Currently working as software specialist.

Languages Spoken

Marathi

Hindi

English

Education

Bharati Vidhyapeeth Kharghar 2007

Diploma in Computer Engineering

shivaji university 2010

Bachelor of Engineering (B.E.)

Address

Kamothe, Mumbai, India - 410209

Verified Info

Phone Verified

Report this Profile

Is this listing inaccurate or duplicate? Any other problem?

Please tell us about the problem and we will fix it.

Please describe the problem that you see in this page.

Type the letters as shown below *

Please enter the letters as show below

Teaches

SQL Programming Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in SQL Programming Training

6

jQuery Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in jQuery Training

5

Java Script Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Script Training classes

3

SQL Server Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in SQL Server Training

6

MS SQL Development Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in MS SQL Development Training

6

.Net Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in .Net Training

6

.Net component

.Net MVC, ADO.NET, .Net Advanced, .Net LINQ, .Net AJAX, Microsoft .Net 4, ASP.NET, .Net Web Services, C# .NET, .Net XML, ASP.NET AJAX

Certification offered

No

VB.NET Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in VB.NET Training

3

C Sharp Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Sharp Classes

6

PL/SQL Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in PL/SQL Classes

6

Reviews

No Reviews yet! Be the first one to Review

FAQs

1. Which classes do you teach?

I teach .Net Training, C Sharp, Java Script Training, MS SQL Development, PL/SQL, SQL Programming, SQL Server, VB.NET and jQuery Classes.

2. Do you provide a demo class?

Yes, I provide a free demo class.

3. How many years of experience do you have?

I have been teaching for 6 years.

Answers by Rohit Sakunde (2)

Answered on 26/10/2017 Learn .Net

You can consume API using ajax call from your web form, Check below example. $.ajax({ type: "GET", url: "http://www.domain.com/api/yourfunctionName/", contentType: "json", dataType: "json", success: function (data)... ...more
You can consume API using ajax call from your web form, Check below example. $.ajax({ type: "GET", url: "http://www.domain.com/api/yourfunctionName/", contentType: "json", dataType: "json", success: function (data) { //your implementation. }, error: function (xhr) { alert(xhr.responseText); } }); OR you can also use HttpClient for consuming WebAPI, See below code HttpClient client; string url = "http://www.domain.com"; client = new HttpClient(); client.BaseAddress = new Uri(url); client.DefaultRequestHeaders.Accept.Clear(); client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); var response = client.GetAsync(string.Format("/api/APIFunction")).Result; if (response.IsSuccessStatusCode) { // Modify as per your requirement string responseString = response.Content.ReadAsStringAsync().Result; Deserialize your object }
Answers 1 Comments
Dislike Bookmark

Answered on 26/10/2017 Learn .Net

You can use CodeDom to convert your windows form to web from. You will get more info on code project where good example is explained in details. I have shared link below https://www.codeproject.com/Articles/9307/Converting-WinForms-Web-Forms-using-CodeDom
Answers 1 Comments
Dislike Bookmark

Teaches

SQL Programming Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in SQL Programming Training

6

jQuery Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in jQuery Training

5

Java Script Training classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in Java Script Training classes

3

SQL Server Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in SQL Server Training

6

MS SQL Development Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in MS SQL Development Training

6

.Net Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in .Net Training

6

.Net component

.Net MVC, ADO.NET, .Net Advanced, .Net LINQ, .Net AJAX, Microsoft .Net 4, ASP.NET, .Net Web Services, C# .NET, .Net XML, ASP.NET AJAX

Certification offered

No

VB.NET Training

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in VB.NET Training

3

C Sharp Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in C Sharp Classes

6

PL/SQL Classes

Class Location

Online (video chat via skype, google hangout etc)

Student's Home

Tutor's Home

Years of Experience in PL/SQL Classes

6

No Reviews yet! Be the first one to Review

Answers by Rohit Sakunde (2)

Answered on 26/10/2017 Learn .Net

You can consume API using ajax call from your web form, Check below example. $.ajax({ type: "GET", url: "http://www.domain.com/api/yourfunctionName/", contentType: "json", dataType: "json", success: function (data)... ...more
You can consume API using ajax call from your web form, Check below example. $.ajax({ type: "GET", url: "http://www.domain.com/api/yourfunctionName/", contentType: "json", dataType: "json", success: function (data) { //your implementation. }, error: function (xhr) { alert(xhr.responseText); } }); OR you can also use HttpClient for consuming WebAPI, See below code HttpClient client; string url = "http://www.domain.com"; client = new HttpClient(); client.BaseAddress = new Uri(url); client.DefaultRequestHeaders.Accept.Clear(); client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); var response = client.GetAsync(string.Format("/api/APIFunction")).Result; if (response.IsSuccessStatusCode) { // Modify as per your requirement string responseString = response.Content.ReadAsStringAsync().Result; Deserialize your object }
Answers 1 Comments
Dislike Bookmark

Answered on 26/10/2017 Learn .Net

You can use CodeDom to convert your windows form to web from. You will get more info on code project where good example is explained in details. I have shared link below https://www.codeproject.com/Articles/9307/Converting-WinForms-Web-Forms-using-CodeDom
Answers 1 Comments
Dislike Bookmark

Rohit Sakunde describes himself as Trainer. He conducts classes in .Net Training, C Sharp and Java Script Training. Rohit is located in Kamothe, Mumbai. Rohit takes at students Home and Online Classes- via online medium. He has 6 years of teaching experience . Rohit has completed Diploma in Computer Engineering from Bharati Vidhyapeeth Kharghar in 2007 and Bachelor of Engineering (B.E.) from shivaji university in 2010. HeĀ is well versed in Marathi, Hindi and English.

X
X

Post your Learning Need

Let us shortlist and give the best tutors and institutes.

or

Send Enquiry to Rohit Sakunde

Let Rohit Sakunde know you are interested in their class

Reply to 's review

Enter your reply*

1500/1500

Please enter your reply

Your reply should contain a minimum of 10 characters

Your reply has been successfully submitted.

This website uses cookies

We use cookies to improve user experience. Choose what cookies you allow us to use. You can read more about our Cookie Policy in our Privacy Policy

Accept All
Decline All

UrbanPro.com is India's largest network of most trusted tutors and institutes. Over 55 lakh students rely on UrbanPro.com, to fulfill their learning requirements across 1,000+ categories. Using UrbanPro.com, parents, and students can compare multiple Tutors and Institutes and choose the one that best suits their requirements. More than 7.5 lakh verified Tutors and Institutes are helping millions of students every day and growing their tutoring business on UrbanPro.com. Whether you are looking for a tutor to learn mathematics, a German language trainer to brush up your German language skills or an institute to upgrade your IT skills, we have got the best selection of Tutors and Training Institutes for you. Read more