As a tutor you can connect with more than a million students and grow your network.
Ask a Question
Feed
All
Lesson Posted on 18/12/2017 .Net .Net/.Net Advanced .Net/.Net AJAX
.NET With AngularJS Training Program Syllabus
DeCode Classes
DeCode Classes is based at Pune, India. DeCode is an outcome of joint and co-operative venture of...
Lesson Posted on 11/12/2017 IT Courses/Angular.JS IT Courses/HTML IT Courses/CSS
Angular-2 Developer Training Program Syllabus
DeCode Classes
DeCode Classes is based at Pune, India. DeCode is an outcome of joint and co-operative venture of...
Angular2 Developer Training Program Syllabus:
Asked on 29/06/2017 .Net/.Net AJAX .Net/.Net Advanced
Looking for .Net Advanced
Find best .Net Advanced in your locality on UrbanPro.
Lesson Posted on 19/04/2017 .Net/.Net Advanced .Net/.Net MVC .Net/C# .NET
CMS IT Services
We are the Information Technology training division of CMS IT Services, an IT company founded in 1976....
.NET Framework is a software framework developed by Microsoft. It includes a large class library named Framework Class Library (FCL) and provides language interoperability (each language can use code written in other languages) across several programming languages.
ASP.Net evolves to bring in better features and functionality, which helps businesses scale better. Each year developers see few new trends that enhances development, and shortens the time-to-market the solution. Here, we will discuss a few trends that will benefit both developers and businesses indulging .Net.
Lesson Posted on 04/04/2017 IT Courses/Microsoft Training/Microsoft Azure Training .Net/.Net Advanced
Difference between App services,Cloud Service and Virtual Machine in Microsoft Azure
Deb D
I have around 6+ years of experience working Microsoft .NET stack in world's foremost technology firm...
App Services :
When you want to deploy your application to Azure IIS conatainers without requiring any control,web apps should be preferred.It's a part of Azure Paas.
1) When you need IIS.
2) Satisfy with your wensite/web apis running in shared space.
3) Not rquired to have any control beyond IIS.
Cloud Service :
When you want to deploy your application with some control over the platform without being concerned about OS,hardware then cloud service comes into picture.It's a part of Azure Paas.
1) On cloud service you can deploy website(Web Role) as well as Worker Role(Background Process)
2) Spohisticated deployment process and isolated hardware.
Virtual Machine :
When you required full contol on hardware,OS,IIS,VHD etc for your application VM should be considered.
1)Total control on environment.
2)Migrate existing infrastructure.
Lesson Posted on 22/03/2017 .Net/.Net WPF .Net/.Net Advanced .Net
Read CSV data using ODBC Connection
Revan Hiremath
Professional .NET Trainer Programming Languages : C, C++, C#, R Programming Database :SQL Server Web...
Codes to read the CSV data using ODBC Connection-
Input File:
File's Encoding format should be ANSI as below
class Student
{
public string CollegeId { get; set; }
public string AdmissionDate { get; set; }
public string CandidateId { get; set; }
public string MobileNum { get; set; }
}
On the button Click I am calling the code to read the CSV data
private void btnTest_Click(object sender, RoutedEventArgs e)
{
string fileName = @"CSVData.csv";
//Create a ODBC TEXT File connection
string connectionString = "Driver={Microsoft Text Driver (*.txt; *.csv)};defaultdir=tempFolder;driverid=27;extensions=csv;
fil=text;maxbuffersize=2048;pagetimeout=5".Replace(" tempFolder", @"C:\Personal\TrialApps\");
string query = string.Format("SELECT * FROM `{0}`", fileName);
List lstStudentInfo = new List();
using (var odbcConnection = new OdbcConnection(connectionString))
{
odbcConnection.Open();
using (var odbcCommand = new OdbcCommand(query, odbcConnection))
{
var dataReader = odbcCommand.ExecuteReader(CommandBehavior.CloseConnection);
while (dataReader.Read())
{
string college_id=dataReader["COLLEGE_ID"].ToString();
string admission_date = dataReader["ADMISSION_DATE"].ToString();
string candidate_id = dataReader["CANDIDATE_ID"].ToString();
string mobile_num = dataReader["MOBILE_NUM"].ToString();
lstStudentInfo.Add(new Student() { CollegeId=college_id,AdmissionDate=admission_date,
CandidateId=candidate_id,MobileNum=mobile_num});
}
}
}
dtGridCSVData.ItemsSource = lstStudentInfo;
}
Xaml Code for the UI Grid:
Output:
Cheers!
read lessLooking for .Net Advanced
Find best .Net Advanced in your locality on UrbanPro.
Answered on 24/03/2017 .Net/.Net Advanced
Nadikattu Ravikishore
Lesson Posted on 07/01/2017 .Net/C# .NET .Net/.Net Advanced .Net/.Net MVC
Difference between Abstract Class and Interface
Deep Narayan Hore
I am an enthusiastic IT professional with more than five years of experience, worked for multinational...
public abstract class car
{
public car() // abstract class constructor
{
Console.WriteLine("Abstract Class constructor");
}
public int noofWheels = 4; // non abstract fields
public int speed = 60; // non abstract fields
public int getSpeed() // non abstract method
{
return speed;
}
public abstract void features(); // abstract method
}
public class Audi : car
{
public Audi()// inherited class constructor
{
Console.WriteLine("Audi Class constructor");
}
private string carType = "Audi";
public override void features() // abstract method overriding
{
Console.WriteLine(carType);
}
}
class Program
{
static void Main(string[] args)
{
Audi a = new Audi();
a.features();
Console.ReadLine();
}
}
public interface Icar
{
void features();
string manufacturer();
}
public class Audi : Icar
{
public Audi()// inherited class constructor
{
Console.WriteLine("Audi Class constructor");
}
private string carType = "Audi A8";
private string carManufacturer = "Audi";
public override void features()
{
Console.WriteLine(carType);
}
public string manufacturer()
{
return carManufacturer;
}
class Program
{
static void Main(string[] args)
{
Audi a = new Audi();
a.features();
Console.WriteLine(a.manufacturer());
Console.ReadLine();
}
}
Output
Lesson Posted on 20/11/2016 .Net/.Net Advanced
Suprio D.
I can teach each and every topics very easily and make it stronger for the students.
1. Server side secure code
2. Network overhead traffic between server and client through hhtp request and responses minimised.
Stored procedures used in ado.net for two main benefits:
1. Network overhead traffic request- response from server get reduced.
2. Databsed identities like database name table name column field names are hidden up on server side code thus providing security against hacking.
read lessLooking for .Net Advanced
Find best .Net Advanced in your locality on UrbanPro.
Lesson Posted on 20/11/2016 .Net/.Net Advanced
Mainpupose of generics interfaces in csharp
Suprio D.
I can teach each and every topics very easily and make it stronger for the students.
UrbanPro.com helps you to connect with the best .Net Advanced in India. Post Your Requirement today and get connected.
Ask a Question