Contact me for final year project in dot net for BCA, BE, BTECH, MCA students.
Learn Microsoft DOT NET
Learn Microsoft .Net by 7+ Years experienced Corporate Trainer
Learn Microsoft.Net online through skype/Teamviewer
Soon job oriented course modules will be launched at Ranchi
Courses Offered:
C#, ASP.NET, ADO.NET, MS SQL SERVER, MVC, Windows Forms, Web Service, XML
( Later On Courses will be launched for WCF, WPF, LINQ )
Course Overview:
The courses are designed after looking the requirements of the IT Companies and other related aspects of top MNCs
26/10/2018
Hello Everyone,
Contact me for final year projects for students of MCA,BCA,BE(IT/CS) with proper guideline and description to justify your Final year Project and secure good grades at a Reasonable price.
Why choose Me?
* Get industrial knowledge
* Project with Multi Features.
* Special Price for Students.
* Bug-Free code with Trial Error approach,
* Deep understanding of Students needs and Institutes requirement.
* All Projects will developed on Dot Net technology
* Project will developed on your ideas
* Time to time knowledge sharing about development in project
* Brief explanation of terms/concept that will be used in the project
* Preparation for viva related with projects
* Guideline about presentation of Project
If you're Interested you may contact me for further details on my email id
[email protected]
Thank you.
Developer’s To Do List for Login and Forgot Password Functionality
------------------------------------------------------------------------------------
Often during development of various projects, I see almost all the time small pieces missing that were not initially been developed on various modules, like for example setting a max length limitation on the email address field from the Login page of an website.
So in this case, I’ve decided to create a To Do list with all the items that need to be developed/tested for a specific part of functionality or module of a new website. I will try to keep it technology independent as much as possible, so feel free to put it on paper and keep it on your desk while you work or test that specific module or part of functionality.
Below you can find a To Do list for Login and Forgot Password functionality:
Basic Functionality:
--------------------------
Implement Username/Email and Password database check and authentication functionality.
Implement Email database check and send email to end-user with reset password instructions.
Implement “Remember Me” functionality.
Display the validation messages summary when user submits invalid data.
Validations:
---------------
Implement validation with regular expression for checking if an email address is valid.
Implement validation to mark all fields as required.
Implement max length limitation on all the fields to match the database field size.
Make sure you display generic validation messages on both Login and Forgot Password functionality for when someone tries to log in with a non-existent email address.
User Experience:
-----------------------
Make the Login and Forgot Password functionality to be triggered when Enter key is pressed.
Optional:
--------------
Implement TAB key navigation between Login textboxes.
Disable auto-complete feature for Login functionality for websites that hold sensitive user information.
Here are 10 top features for you to discover in C # 6
1. Roslyn—A New Compiler for C # and VB: Roslyn is the compiler for the C # 6 language; it has quite a bit of compiler improvements and, importantly, it is open source. Compiler Roslyn is also available as a service, in other words a "compiler as a service" because you can use the Roslyn API libraries to extend. This is just a scratch on the surface of Roslyn. I will leave it to the readers to explore it more.
2. String Interpolation:It can be looked at as an improvement to the String.Format functionality where, instead of the place holders, you can directly mention the string expressions or variables.
static void Main(string[] args)
{
string name = "Robert";
string car = "Audi";
WriteLine("\{name}'s favourite car is
{car}!");
}
3. Using Is Allowed: This feature is something to make your code less cluttered and will reduce duplications. As with the namespaces, you can include a static class in the using statement similar to a namespace.
using System;
// A static class inclusion
using System.Console;
namespace CSharp6Demo
{
class Program
{
static void Main(string[] args)
{
WriteLine("Console. is not required
as it is included in the usings!");
}
}
}
4. Exception Filters: Exceptions can be filtered in the catch blocks with ease and cleanly with C # 6. Following is a sample source code where the intention is to handle all Exceptions except the SqlException type.
public async void Process()
{
try
{
DataProcessor processor = ne
}
// Catches and handles only non sql exceptions
catch (Exception exception) if(exception.GetType()
!= typeof(SqlException))
{
ExceptionLogger logger = new ExceptionLogger();
logger.HandleException(exception);
}
}
5. Await in the Catch Block: This is an important non-syntactic enhancement that will be available in C # 6. The await keyword can be called inside the catch and finally blocks. This opens up the way to perform an async exception handling or fallback process in case an exception happened during an async process call.
public async void Process()
{
try
{
Processor processor = new Processor();
await processor.ProccessAsync();
}
catch (Exception exception)
{
ExceptionLogger logger = new ExceptionLogger();
// Catch operation also can be aync now!!
await logger.HandleExceptionAsync(exception);
}
}
6. OUT Parameter Declaration During Method Call: This is one of my favorites because I was feeling something not good about the separate declaration of the OUT parameter before the method call. This feature allows you to declare the OUT parameter during the method call, as shown below.
public bool ConvertToIntegerAndCheckForGreaterThan10
(string value)
{
if (int.TryParse(value, out int convertedValue)
&& convertedValue > 10)
{
return true;
}
return false;
}
Note that the same out parameter is used in the consequent IF condition expression.
7. Primary Constructor: Primary Constructor is a feature in which you are allowed to pass the constructor parameters at the class declaration level instead of writing a separate constructor. The scope of the primary constructor parameters values is class level and will be available only at the time of class initialization. It comes to good use when it is used with the Auto-Property initializers.
// Primary constructor
class Basket(string item, int price)
{
// Using primary constructor parameter values
// to do auto property initialization.
public string Item { get; } = item;
public int Price { get; } = price;
}
8. Auto-Property Initializers: With the Auto-Property initialization feature, the developer can initialize properties without using a private set or the need for a local variable. Following is the sample source code.
class PeopleManager
{
public List Roles { get; } =
new List() { "Employee", "Managerial"};
}
9. ?—Conditional Access Operator: In earlier versions of the C # language, you always had to write the explicit if condition NULL checks before using an object or its property, as shown below.
private void GetMiddleName(Employee employee)
{
string employeeMiddleName = "N/A";
if (employee != null && employee.EmployeeProfile
!= null)
employeeMiddleName =
employee.EmployeeProfile.MiddleName;
}
The same can be converted into a one-liner by using the Conditional Access Operator in C # 6.
private void GetMiddleName(Employee employee)
{
string employeeMiddleName =
employee?.EmployeeProfile?.MiddleName ?? "N/A";
}
10. Expression Bodied Methods: How many times have you had to write a method just for one line of code? Now, with C # 6 you can simply create an expression bodied member with only the expression and without the curly braces or explicit returns.
class Employee
{
// Method with only the expression
public static int
CalculateMonthlyPay(int dailyWage)
=> dailyWage * 30;
}
JIT Complier: JIT stands for just-in-time compiler. It converts the MSIL code to CPU native code as it is needed during code ex*****on. It is called just-in-time since it converts the MSIL code to CPU native code; when it is required within code ex*****on otherwise it will not do nothing with that MSIL code.
Different Types of JIT
1. Normal JIT: This complies only those methods that are called at runtime. These methods are compiled only first time when they are called, and then they are stored in memory cache. This memory cache is commonly called as JITTED. When the same methods are called again, the complied code from cache is used for ex*****on.
2. Econo JIT: This complies only those methods that are called at runtime and removes them from memory after ex*****on.
3. Pre JIT: This complies entire MSIL code into native code in a single compilation cycle. This is done at the time of deployment of the application.
This is an opening on JAVA platform using JAVA, JSF, hibernate, Icefaces/primefaces, UML, MySQL. One will work on all stages of SDLC. This is highly innovative software product company giving high growth career and opportunity to work in all areas of software development.
Experience:- 0-6 Month and 6-18 Month
Please send CV on [email protected]
kumar nawin 9810757646
major portal and technology used
Google.com:-Frontend(JavaScript, Ajax)---Backend(C, C++, Java, Python, PHP)---Database(BigTable)
Facebook.com:-Frontend(JavaScript, Ajax)---Backend(PHP, C++, Java, Python,Erlang)--Database(MySQL
YouTube.com:-Frontend(Flash, JavaScript)---Backend(C, Python, Java)--Database(MySQL)
Yahoo:-Frontend(JavaScript, Ajax)---Backend(PHP)--Database(MySql)
Live.com:-Frontend(JavaScript, Ajax)---Backend(ASP.NET)---Database(Microsoft SQL Server)
MSN.com:- Backend(ASP.NET)--Database(Microsoft SQL Server)
Wikipedia.org:- Backend(PHP)--Database(MySQL)
Blogger:-Backend(Python)--Database(BigTable)
Bing:-Frontend(JavaScript)--Backend(ASP.NET)--Database( Microsoft SQL Server)
Twitter.com:-Backend( C++, Java, RoR, Scala)
Wordpress.com:-Frontend(JavaScript)---Backend(PHP)--Database( MySQL)
Amazon.com:-Backend(Java, J2EE, C++, Perl)
eBay.com:-Backend(Java, WebSphere, Servlets)--Database(Oracle Database
Linkedin.com:-Backend(Java, Scala)
*Frontend---client-side
*Backend---server-side
25/12/2014
Object Oriented Programming
Object Oriented Programming Object Oriented Programming (OOP) Object Oriented Programming is programming style and .NET Languages like C # (read as ‘C’ Sharp), VB.NET etc. makes use of OOPs concepts. Hence the study of the programming concepts and programming in .NET would not be possible without the study of OOPs Alternative to Object Orientated programming style is Procedural programming; Procedural programming adopts a step-by-step approach to implement a particular task. [ 1099 more words. ]
05/12/2014
https://learndotnetfunda.wordpress.com/2014/12/05/what-is-programming-language/
what is Programming Language What Is a Programming Language? We express ourself using a language that has many words but Computers use a simple language that consists of series 1s and 0s, where 1 Mean "on/Yes" and a 0 meaning ...
Click here to claim your Sponsored Listing.
Location
Category
Contact the school
Telephone
Address
Ranchi
835217
Opening Hours
| Monday | 6am - 8am |
| 7pm - 10pm | |
| Tuesday | 6am - 8am |
| 7pm - 10pm | |
| Wednesday | 6am - 8am |
| 7pm - 10pm | |
| Thursday | 6am - 8am |
| 7pm - 10pm | |
| Friday | 6am - 8am |
| 7pm - 10pm | |
| Saturday | 10am - 1pm |
| 4pm - 10pm | |
| Sunday | 10am - 1pm |
| 4pm - 10pm |