Check
below articles for asp.net dropdownlist control examples and samples in c#,
VB.NET
Check
below articles for asp.net gridview control examples and samples in c#,VB.NET
Make single radio button selection and Change color of selected
row in asp.net gridview using Jquery
Introduction:
In
this article I will explain how to bind data to textbox in inside of gridview in
asp.net.
In previous post I explained how to bind xml data to dropdownlist or gridview in asp.net.
Now I will explain how to bind data to textbox in gridview in asp.net. To
implement this concept
first design your aspx page like this
Introduction:
Here will explain how to remove duplicate records or rows from a table in SQL server or delete duplicate records from table in sql server.
Here will explain how to remove duplicate records or rows from a table in SQL server or delete duplicate records from table in sql server.
Description:
In
previous articles I explained about substring function in SQL server
and Replace function in SQL Server and I explained how to delete duplicate records from datatable in asp.net. Now I will explain
how to delete duplicate records from a datatable in SQL server. During work
with one application I got requirement like get the unique records from
datatable in sql server. Actually our datatable does not contain any primary
key column because of that it contains duplicate records that would be like
this
Query to Replace part of string in sql server | Replace function example
Categories:
General
,
SQL Server
Introduction:
In this article I will explain what is the replace function in SQL Server and how to use Replace() function in SQL Server.
In this article I will explain what is the replace function in SQL Server and how to use Replace() function in SQL Server.
Description:
In
previous post I explained article substring function in SQL server. Now I will explain what
is Replace () function in SQL server
and how to use it in our applications. In one application I got requirement
like replace particular part of the string with another value to achieve this
functionality I realized it’s better to use Replace () function.
how to bind xml data to dropdownlist/gridview in asp.net
Categories:
Asp.net
,
DropdownList
,
General
,
XML
Introduction:
Here
I will explain how to read data from xml file and bind xml data to dropdownlist or gridview in asp.net.
Description:
In previous articles I explained articles relating
to XML
some of those are read xml node values and bind data to gridview and how to insert
and read data from xml in asp.net. In
situation I
got requirement like read data from xml file and display it on webpage. My XML
File Name as “Sample.xml” and that would contains
data like this
Asp.net- Ajax ConfirmbuttonExtender example with modalpopupextender
Categories:
Ajax ConfirmbuttonExtender
,
AjaxModalPopupExtender
,
Asp.net
,
Gridview
Introduction:
Here I will explain ajax confirmbuttonextender example with modalpopupextender in gridview using asp.net.
Description:
Previously I explained many articles relating to Asp.net and Ajax and use customized style of confirmation box to delete gridview records. Now I will explain how to use ajax confirmbuttonextender control in gridview to delete records with modalpopupextender in asp.net. Here I am using same concept (use customized style of confirmation box to delete gridview records) but only change is I am using confirmbuttonextender to implement this concept in asp.net.
Here I will explain ajax confirmbuttonextender example with modalpopupextender in gridview using asp.net.
Description:
Previously I explained many articles relating to Asp.net and Ajax and use customized style of confirmation box to delete gridview records. Now I will explain how to use ajax confirmbuttonextender control in gridview to delete records with modalpopupextender in asp.net. Here I am using same concept (use customized style of confirmation box to delete gridview records) but only change is I am using confirmbuttonextender to implement this concept in asp.net.
Introduction
Here I will explain
how to use linkbutton in gridview in asp.net.
Description:
In
previous posts I explained many articles relating to Asp.net,
JavaScript, Jquery,
gridview
etc. Now in this post I will explain how to use linkbutton in gridview to delete
gridview records in asp.net.
Generally
if we want to place any control inside of gridview we need to use asp:TemplateField.
Introduction:
Here
I will explain how to read node values from XML document using asp.net.
Description:
In previous article I explained how to insert and read data from xml in asp.net. During
working with XML I got requirement like read child node values from xml file
and display it on webpage. My XML File Name as “SampleXML.xml” and that would be like this
Introduction:
In
this article I will explain how to create app in twitter and implement twitter login authentication for website in asp.net.
Description:
In previous post I explained article how to integrate facebook login authentication for website in asp.net. Now I will explain how to allow users to login with twitter accounts in website using asp.net.
In previous post I explained article how to integrate facebook login authentication for website in asp.net. Now I will explain how to allow users to login with twitter accounts in website using asp.net.
Before
implement twitter login authentication we need to get consumerKey and consumerSecret
key
from twitter for that we need to create application in twitter by using this
link https://dev.twitter.com/apps/new once open that will display window like this
Change/Set date format in jquery ui datepicker using asp.net
Categories:
Asp.net
,
DatePicker
,
General
,
JQuery
Introduction:
In this article I will explain how to set or change date format in JQuery calendar control like dd/mm/yy or mm/dd/yy or DD/MM/YYYY etc. using asp.net.
In this article I will explain how to set or change date format in JQuery calendar control like dd/mm/yy or mm/dd/yy or DD/MM/YYYY etc. using asp.net.
Description:
In previous post I explained many articles relating to JQuery Datepicker in asp.net. Now I will explain how to change date format in JQuery calendar control like dd/mm/yy or mm/dd/yy or etc based on our requirement.
In previous post I explained many articles relating to JQuery Datepicker in asp.net. Now I will explain how to change date format in JQuery calendar control like dd/mm/yy or mm/dd/yy or etc based on our requirement.
Asp.net set watermark text for password textbox in JavaScript
Categories:
Asp.net
,
General
,
Javascript
Introduction
In
this article I will explain how to set watermark text for password textbox
using JavaScript in asp.net.
Description:
In
previous article I explained how to set watermark text for textbox using
JavaScript.
In one situation I got requirement like implement watermark text for password
textbox which contains TextMode=”Password”.
After did some research I realized that we don’t have a chance to implement
watermark text for password textbox because it won’t support in all the
browsers.
Introduction:
In this article I will explain what is Ajax updatepanel control, advantages of updatepanel control and how to use multiple updatepanels in asp.net.
Description:
Previously I explained many articles relating to Ajax. Now I will explain what is ajax updatepanel control and use of ajax updatepanel control in asp.net.
In this article I will explain what is Ajax updatepanel control, advantages of updatepanel control and how to use multiple updatepanels in asp.net.
Description:
Previously I explained many articles relating to Ajax. Now I will explain what is ajax updatepanel control and use of ajax updatepanel control in asp.net.
During work with our
applications if we entered any values in textbox controls and click on a button
in form we will see full postback of our page and we will lost all the controls
values whatever we entered previously this happend because of postback. If we
want to avoid this full postback of page and round trip to server we need to
write much code instead of writing much code we can use ajax updatepanel
control.
Clear ajax asyncfileupload textbox after file upload in asp.net
Categories:
Ajax
,
AjaxAsyncFileUpload
,
Asp.net
,
Javascript
Introduction:
Here I will explain how to clear the Ajax AsyncFileUpload control after upload files to folder or server using asp.net
Description:
In previous article I explained Ajax AsyncFileUpload example to upload files using asp.net.
Here I will explain how to clear the Ajax AsyncFileUpload control after upload files to folder or server using asp.net
Description:
In previous article I explained Ajax AsyncFileUpload example to upload files using asp.net.
During work with Ajax AsyncFileUpload control even after upload files to
folder still that is containing the path of the file which is uploaded to
folder. To clear the path of file from Ajax AsyncFileUpload we need to write some custom code for
that check the below code.
Introduction:
Here I will explain how to solve the problem the operation could not be completed invalid formatetc structure during the time of working with Ajax AsyncFileUpload control in asp.net.
Description:
Here I will explain how to solve the problem the operation could not be completed invalid formatetc structure during the time of working with Ajax AsyncFileUpload control in asp.net.
Description:
In
previous post I explained Ajax AsyncFileUpload control example in asp.net. During
working with that one suddenly I got error like “the operation could not be
completed invalid formatetc structure”.
Ajax AsyncFileUpload control example in asp.net to upload files to server
Categories:
Ajax
,
AjaxAsyncFileUpload
,
Asp.net
,
Fileupload
Introduction:
Here I will explain how to use Ajax AsyncFileUpload control to upload files to folder and show progress bar during upload files to server using asp.net
Description:
Previously I explained many articles relating to Ajax. Now I will explain how to use ajax AsyncFileUpload control to upload files to folder in asp.net. Before proceed to implement sample have you install ajaxcontroltoolkit in visual studio or not if not install it otherwise if you already done then follow the below steps to implement Ajax AsyncFileUpload control example in asp.net.
Here I will explain how to use Ajax AsyncFileUpload control to upload files to folder and show progress bar during upload files to server using asp.net
Description:
Previously I explained many articles relating to Ajax. Now I will explain how to use ajax AsyncFileUpload control to upload files to folder in asp.net. Before proceed to implement sample have you install ajaxcontroltoolkit in visual studio or not if not install it otherwise if you already done then follow the below steps to implement Ajax AsyncFileUpload control example in asp.net.
Show Jquery datepicker when click on image in asp.net
Categories:
Asp.net
,
DatePicker
,
General
,
JQuery
Introduction:
In this article I will explain how to show JQuery calendar control when click on image instead of focus on textbox in asp.net.
In this article I will explain how to show JQuery calendar control when click on image instead of focus on textbox in asp.net.
Description:
In previous post I explained many articles relating to JQuery Datepicker in asp.net. Now I will explain how to show JQuery calendar control instead of focus on textbox using asp.net.
In previous post I explained many articles relating to JQuery Datepicker in asp.net. Now I will explain how to show JQuery calendar control instead of focus on textbox using asp.net.
Till now I explained JQuery
Datepicker articles
relating to show the datepicker whenever we place or focus courser in textbox.
End Date should be greater than Start Date using jQuery Date Picker
Categories:
Asp.net
,
DatePicker
,
General
,
JQuery
Introduction:
Here I will explain how to set jQuery validation like end date should be greater than start date and allow user to select dates only
within particular dates range using jquery datepicker control in asp.net.
Description:
In previous post I explained many articles relating to JQuery Datepicker in asp.net. Now I will explain how to set end date is greater than start date in jquery datepicker control using asp.net.
In previous post I explained many articles relating to JQuery Datepicker in asp.net. Now I will explain how to set end date is greater than start date in jquery datepicker control using asp.net.
Sometimes we will get situation like allow
user to enter start date, end date and end date should be greater than start
date and another thing if we want to allow user to select only within 1 week or
10 days or 15 days or 1 month range we can set these things easily with set month/year range in JQuery datepicker. If we want to
implement this one using Ajax calendar control we need to write much code in
that case if we use JQuery datepicker control we can make it easily by setting
some properties.
Set month/year date range in JQuery datepicker control using asp.net
Categories:
Asp.net
,
DatePicker
,
General
,
JQuery
Introduction:
In this article I will explain how to set months range or years range in JQuery calendar control in asp.net.
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.
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.
Introduction:
In this article I will explain how to implement JQuery calendar control with multiple months in asp.net.
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.
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
Categories:
Asp.net
,
DatePicker
,
General
,
JQuery
Introduction:
In this article I will explain how to implement JQuery calendar control with dropdownlist selection for month and year example in asp.net.
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.
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
Categories:
Asp.net
,
DatePicker
,
General
,
JQuery
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.
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.
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
Categories:
General
,
SQL Server
Introduction:
In this article I will explain what is the substring function and uses of substring function in SQL Server.
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.
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.
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.
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'
Categories:
Asp.net
,
Errors
,
Javascript
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
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)
Categories:
Asp.net
,
Facebook
,
General
,
Javascript
Introduction:
In this article I will explain how to access or get Username, email, profile image of facebook logged in user using asp.net.
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.
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.
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.
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.
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.
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.
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.
Subscribe to:
Posts
(
Atom
)
- Interview Questions in ASP.NET, C#, VB.NET, SQL, .NET Framework
- Simple login form example in asp.net Check Username and Password availability in database
- Asp.net insert, Edit, update, delete data in gridview
- Introduction to Object Oriented Programming Concepts (OOPS) in C#.net
- 3 tier architecture example in asp.net with C#
- OOPS (Object Oriented Programming) Concepts in C#.NET with Examples
- Best Login Page Design in HTML, CSS with Source Code
- C# - Constructors in C# with Example, Types of Constructor in C# with Example
- how to insert images into database and how to retrieve and bind images to gridview using asp.net (or) save and retrieve images from database using asp.net
- Introduction to WCF - WCF tutorial | WCF Tutorial - Windows Communication Foundation | WCF Example | WCF Sample code in asp.net 3.5 | Basic WCF Tutorial for Beginners