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

Set month/year date range in JQuery datepicker control using asp.net

Apr 27, 2012 3 comments
Introduction: 

In this article I will explain how to set months range or years range in JQuery calendar control in asp.net.
Description:
  
In previous post I explained show multiple months in calendar control
and calendar control with dropdownlist selection for month and year. Now I will explain how to set months and years range in jquery calendar control.

Suppose now if we want to allow user to select only within 10 or 15 days or 1 month range then we can set those values very easily and previously I explained calendar control with dropdownlist selection for month and year for that we can set how many years range we display it in year dropdown.

jQuery- Show multiple months in datepicker

Apr 26, 2012 3 comments
Introduction: 

In this article I will explain how to implement JQuery calendar control with multiple months in asp.net.
Description:
  
In previous post I explained
JQuery datepicker calendar control and calendar control with dropdownlist selection for month and year. Now I will explain how to show JQuery calendar with multiple months in asp.net.

If we use Ajax calendar control we don’t have a chance to display these type custom options and need to write some custom css classes to change ajax calendar control style other Ajax calendar will be like this

JQuery dropdownlist selection for month/year in calender using asp.net

Apr 25, 2012 32 comments
Introduction: 

In this article I will explain how to implement JQuery calendar control with dropdownlist selection for month and year example in asp.net.
Description:
  
In previous post I explained JQuery datepicker calendar control example in asp.net. Now I will explain how to use dropdownlist selection for month and year in JQuery calendar control using asp.net.

If we use Ajax calendar control we don’t have a chance to display these type custom options and need to write some custom css classes to change ajax calendar control style other Ajax calendar will be like this

JQuery Datepicker Example | jQuery Calendar Example with asp.net textbox

Apr 24, 2012 35 comments
Introduction
  
Here I will explain JQuery UI datepicker or calendar control example in asp.net or how to display or show the JQuery UI Date picker control when click on textbox in asp.net.

Description:
  
In previous post I explained many articles relating to
JQuery. Now in this article I will explain how to show JQuery UI calendar control when click on textbox using asp.net.

Substring function example to get particular part of string in SQL Server

Apr 23, 2012 8 comments
Introduction: 

In this article I will explain what is the substring function and uses of substring function in SQL Server.
Description:
During write query in SQL server I got requirement like split the string and get only some part of it to achieve this functionality I realized it’s better to use SubString function. 

Asp.net Refresh page after facebook login/logout or fb.login/logout examples

Apr 22, 2012 8 comments
Introduction: 

In this article how to refresh webpage after facebook login or logout in asp.net or examples of FB.login(), FB.logout() options in asp.net.
Description:
  
In previous post I explained
how to integrate facebook login to asp.net website and get user details from facebook in asp.net. During working with these concepts I got problem to refresh webpage after facebook login or logout to get updated details of user.

JSError- microsoft jscript runtime error object doesn't support property or method 'addeventlistener'

1 comments
Introduction: 

In this article I will explain how to solve problem of “microsoft jscript runtime error object doesn't support property or method 'addeventlistener'” during working with click events in JavaScript.

Description:

In Previous posts I explained how to integrate facebook login button in asp.net during implement that functionality I written functions like this to handle hyperlinks click events in JavaScript

Asp.net get facebook logged in user details(Username,email,profile image)

65 comments
Introduction:

In this article I will explain how to access or get Username, email, profile image of facebook logged in user using asp.net.
Description:
  
In previous post I explained
how to integrate facebook login to asp.net website. In that I explained clearly how to create app in facebook and integrate facebook login in website. After create and integrate facebook login I got requirement like get facebook logged in user details those are name, email, profile image etc.

Asp.net integrate Facebook login authentication to website

Apr 21, 2012 130 comments
Introduction:

Here I will explain how to add facebook login website in asp.net or integrate facebook login button to website in asp.net and
how to create application in facebook.

Description:
  
In previous post I explained many articles relating to
Asp.net, JQuery, and SQLServer etc. Now I will explain how to allow users to login with facebook accounts in website using asp.net.

Asp.net host website on local machine with custom url instead of http://localhost/ in IIS

41 comments
Introduction:

In this article I will explain how to create or setup or host new site in IIS with custom URL(http://yoursitename.com) instead of http://localhost/ in asp.net.


Description:
  
In previous post I explained how to
publish or deploy our application in IIS. In one situation I got requirement like setup separate new site in IIS with custom url (ex: http://aspdotnet-suresh.com ) in system not under Default website.

The installer was interrupted before application could be installed. You need to restart installer to try again

Apr 11, 2012 22 comments
Introduction:

In this article I will explain how to solve “
The installer was interrupted before application could be installed. You need to restart installer to try again” problem during installation of custom web setup projects in system.

Description:

In previous article I explained how to create setup project to deploy application in IIS. After create a create Setup project for that application I tried to install it in my system during that time I got error like “The installer was interrupted before application could be installed. You need to restart installer to try again”.

Visual Studio Create Setup project to deploy web application in IIS

Apr 10, 2012 43 comments
Introduction:

In this article I will explain how to create setup file in visual studio 2008/2010 to deploy web application file directly in IIS or in client machine or how to place
web application folder in c:\\inetpub\wwwroot folder by running setup file using asp.net.

Description:
  
In previous post I explained many articles relating to
Asp.net, JQuery, and SQLServer etc. If we did any application and if it works perfectly then we will prepare published files and deploy our application in IIS.

If we want to deploy application in IIS we need prepare separate published files folder and create virtual path in IIS, point to our folder and need to change some properties to make it work through our IIS by doing all these things we will waste a lot of time.

Set Custom auto generated/increment field in SQL Server

Apr 8, 2012 28 comments
Introduction:

In this article I will explain how to set custom auto increment or auto generated column during insertion of record in
SQL server.

Description:
In previous article I explained how to set auto identity column in SQL Server to generate a unique number for newly insert records like 1, 2, 3, 4, 5…etc based on records insertion. This identity column will work only for integer values. Suppose if I want to set id value starts from 08U13000 and increase that value based on new records inserted in table like 08U13000, 08U13001, 08U13002, etc… In this case auto identity property won’t work for us because it supports only for integer values.

Asp.net change gridview header text dynamically at runtime

Apr 7, 2012 10 comments
Introduction:

In this article I will explain how to change gridview header dynamically at runtime using asp.net


Description:
  
In previous posts I explained many articles relating to Asp.net and Gridview. Now I will explain another article relating to Gridview. During working in one of my application I got one requirement like change gridview header dynamically whenever we click on some button.
To implement this first design table in your database and give name as UserInformantion

Asp.net show alert message from code behind using javascript

Apr 6, 2012 16 comments
Introduction:

In this article I will explain how to call JavaScript function from code behind and show JavaScript alert message from code behind using asp.net.
Description:
  
I explained many articles relating to
Asp.net, C#.NET, JavaScript, Gridview, JQuery etc. During working with those articles I came across one situation that is show alert message from code behind after completion of my code execution like our JavaScript alert message.

JQuery Hide/Show DIV Elements Content Example

Apr 5, 2012 7 comments
Introduction:

Here I will explain how to show / hide div using jQuery or jQuery Show & hide div content elements using JQuery in asp.net.


Description:
  
In previous post I explained many articles relating to
JQuery. Now in this article I will explain how to show or hide div or table elements on website using JQuery in asp.net. In many websites we will be able to see functionality like whenever we click on some link automatically that div or table will hide and again if we click on same link that will be visible for us we can implement that functionality by using JQuery

JQuery Display recent/latest tweets on website using asp.net

Apr 3, 2012 10 comments
Introduction:

In this article I will explain how to show latest or recent tweets on website using JQuery in asp.net.


Description:
  
In previous post I explained many articles relating to JQuery. Now in this article I will explain how to display or show recent tweets on website using JQuery in asp.net. In many websites we will be able to see the tweet widget and that contains recent tweets. After seen that twitter widget I decided to write a post to display latest tweets on our website using JQuery in asp.net.


© 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.