Aspdotnet-Suresh

aspdotnet-suresh offers C#.net articles and tutorials,csharp dot net,asp.net articles and tutorials,VB.NET Articles,Gridview articles,code examples of asp.net 2.0 /3.5,AJAX,SQL Server Articles,examples of .net technologies

C# - Difference between Initialization and Instantiation

May 18, 2016 4 comments
Introduction:

Here I will explain difference between initialization and instantiation in c#, vb.net with example or instantiation vs initialization in asp.net or how to instantiate and initialize a class in asp.net using c#, vb.net with example. In c# or vb.net instantiation means declaring object for class and initialization means assigning values to variables or setting initial values.

Description:

C# - Difference between Instantiation and Inheriting (Inheritance) a Class

May 12, 2016 1 comments
Introduction:

Here I will explain difference between instantiation and inheriting (inheritance) a class in c#, vb.net with example or instantiation vs inheritance in asp.net or how to instantiate and inherit a class in asp.net using c#, vb.net with example. In c# or vb.net instantiation means declaring object for class and inheritance means acquiring properties from base class.

Description:

jQuery Show Hide Div Element on Scroll Position Example

May 11, 2016 5 comments
Introduction:

Here I will explain how to use
jQuery to show hide div element on scroll position or show hide div on scroll position in jQuery or show / hide element on scroll jQuery. In jQuery by using window.scroll property we can show or hide div element based on position.

Asp.Net MVC Cross-Site Request Forgery (csrf) Attacks Prevention

May 10, 2016 0 comments
Introduction:

Here we will learn how to prevent cross-site request forgery (csrf) attacks in
asp.net mvc with example or asp.net mvc preventing cross-site request forgery (csrf) attacks or understand cross-site request forgery attacks in asp.net mvc or fix / stop cross-site request forgery attacks in asp.net mvc with example. To prevent cross site request forgery attacks we need to use AntiForgeryToken concept in asp.net mvc.

SSMS 2014 Ctrl+R Shortcut to Show or Hide Query Results Pane

May 9, 2016 0 comments
Introduction:

Here I will explain enable Ctrl + R shortcut to show or hide results pane in
sql server or Ctrl + R shortcut key to show / hide results pane missing in ssms 2014 or Ctrl + R shortcut key not working in ssms 2014 to show or hide results pane. In sql server 2014 Ctrl + R option to show or hide results pane has been disabled by default so we need to enable it manually by changing options of ssms 2014.
Description:

SQL Server Get Previous and Next Row Values from Sequence

May 8, 2016 0 comments
Introduction:

Here I will explain how to get previous and next row values from sequence in
sql server or find next and previous records from table in sql server or access previous and next row values from in sql server. To get next and previous records from table data in sql server we need to write query to get max and min value from table data based on value in sql server.
Description:

Fix for Windows 10 Blurry Font (Text) Problem

May 6, 2016 0 comments
Introduction

Here I will explain how to fix blurry font problem in windows 10 or icon font problem in windows 10 or blurry font fix in windows 10 or fix for blurred text problem in windows 10. To fix blurry font problem in windows 10 we need to change cleartype options.

Description:
  
In previous articles I explained excel find and highlight duplicate columns, keyboard keyboard shortcut key codes,
compare two columns values and show duplicate values in excel, create desktop shortcut key to lock computer, configure dns server in windows 7. Now I will explain how to fix blurry font problem in windows 10 by changing cleartype options.

SQL Server 2014 Keyboard Shortcut Keys in Management Studio

May 4, 2016 2 comments
Introduction:

Here I will explain keyboard shortcuts for
sql server management studio 2014 or shortcut keys for sql server management studio 2014 or keyboard shortcuts to open new query window, show / hide result pane, toggle between tabs, execute selected query, etc. in sql server management studio.
Description:

JavaScript Convert Phone Number Format Example in jQuery

May 3, 2016 1 comments
Introduction

Here I will explain how to use
JavaScript to format phone number with example or convert phone number to international format (USA) in JavaScript / jQuery convert number to phone number format with example or JavaScript phone number validation example. By loop through number we can convert number to phone number format.

SQL Server Order By in Union with Example

Apr 21, 2016 0 comments
Introduction:

Here I will explain how to use order by in union query in
sql server with example or order by clause with union operator in sql server with example or use union operator with order by in sql server or how to combine and use order by and union in sql server with example. To use Order By property with union we need to create sub query for union query statements in sql server.
Description:

Asp.Net MVC Create Roles, Assign Roles to Users in Membership Provider

Apr 19, 2016 0 comments
Introduction

Here we will learn how to create roles and assign roles to users using membership in
asp.net mvc with example or assigning roles to users in asp.net mvc membership provider with example. Generally membership provider will provide default functionality to create roles and assign roles to users using membership database in asp.net mvc applications. In case if we want to use our own custom database for membership provider then we can use it in asp.net mvc based on our requirements.

Asp.Net MVC Create User using Membership Provider with Example

Apr 18, 2016 0 comments
Introduction

Here we will learn how to create users using membership in
asp.net mvc with example or use membership in asp.net mvc with example or how to use createuser method in asp.net mvc membership provider to create new user with example. Generally membership provider will provide default functionality to create users using membership database in asp.net mvc applications and we can use custom database for membership provider in asp.net mvc based on our requirements.

jQuery Disable F12 Key, Console Log in Browser in JavaScript Example

Apr 17, 2016 7 comments
Introduction:

By clicking F12 in the browser we can open the Console log and development tool of a web site running in the browser. As a developer while you are developing its OK for you, but when others are trying to see your application code and do some operations definitely we don't want to disclose this. So what is the solution? we can easily prevent this using some simple JavaScript  and jQuery scripts. Let’s see how.

Description
:

To stop this we can do two things. One, while users are opening the console log he or she will be prompted with some message or user will not be accessing the F12 key with mouse right click options. We will discuss both the ways one by one.

Asp.Net Membership Provider Tutorial (Create Users, Roles, Assign Roles) Examples

Apr 12, 2016 0 comments
Introduction

Here we will learn
asp.net membership provider tutorial with topics like creating users, roles, assign roles to users, edit / update / delete user details, recover user password using password recovery / change user password using changepassword control, etc.. using asp.net membership provider with examples using c#, vb.net.

Get Users IP Address in Asp.Net using C#, VB.NET with Example

Apr 11, 2016 10 comments
Introduction

Here we will learn how to get users / client IP address in asp.net using c# and vb.net with example or retrieving user's IP address in
 asp.net using c# and vb.net or how to get IP address of visitors machine in asp.net using c# and vb.net with example.

Description:
  
In previous articles I explained JavaScript Get User IP Address, City, Latitude, Longitudehow to find client machine IP using jquery in asp.net, show users current location in google map using latitude and longitude in asp.net, show google map with latitude & longitude in asp.net and many articles relating to 
asp.netc#vb.net jQuery. Now I will explain how to get users ip address or client IP address of machine in asp.net using c# and vb.net.

Asp.Net MVC Get / Pass Query String Parameters to Controller with Example

Apr 8, 2016 2 comments
Introduction

Here we will learn how to pass / send a query string parameters in
asp.net mvc with example or how to retrieve / get query string parameters in asp.net mvc with example or how to use query string parameters in asp.net mvc controller with example. Generally query string parameters are used send information from one page to another page in asp.net mvc applications.

© 2015 Aspdotnet-Suresh.com. All Rights Reserved.
The content is copyrighted to Suresh Dasari and may not be reproduced on other websites without permission from the owner.