Author: Meera Academy

Posted in SQL-SERVER

Create XML using SQL Query in SQL Server 2008

Here, we will learn how to create XML using Query: SELECTTOP1000 [Code]       ,[Name]       ,[Price]   FROM[Temp].[dbo].[Product]   FORXML RAW (‘Product’),   ROOT (‘Products’); Here SQL statement “FOR XML…

Continue Reading Create XML using SQL Query in SQL Server 2008
Posted in Chat Application

Create Simple Chat Application in ASP.Net with C#

How to Create Simple Chat Application in ASP.Net with C#, online chat application in asp.net. Implement chat application in my asp.net website with C#.

Continue Reading Create Simple Chat Application in ASP.Net with C#
Posted in Validation Control

Validationsummary Control in ASP.Net

ValidationSummary Control in ASP.Net. ValidationSummary control used to display all the validation error message at single place on web forms in asp.net.

Continue Reading Validationsummary Control in ASP.Net
Posted in Validation Control

Example of RangeValidator Control in ASP.Net

Example of RangeValidator control in ASP.Net. Validate Mobile Number using RangeValidation Control in ASP.Net.

Continue Reading Example of RangeValidator Control in ASP.Net
Posted in Validation Control

CompareValidator Control in ASP.Net

How to use Compare Validator control in asp.net. match password with compare password in registration form in asp.net using compare validator control.

Continue Reading CompareValidator Control in ASP.Net
Posted in ASP.Net

How to Detect Refresh or Postback in ASP.NET

  We are always checking Ispostback value. IsPostback will always have the value which was set previously. So for instance, if the page was posted…

Continue Reading How to Detect Refresh or Postback in ASP.NET
Posted in ASP.Net Controls

How to use MultiView Control in ASP.Net

ASP.Net MultiView Control – How to use MultiView control in asp.net c#. What is view and MultiView control in asp.net.

Continue Reading How to use MultiView Control in ASP.Net
Posted in ASP.Net Controls

ListBox Control in ASP.Net

ASP.Net ListBox Control – How to use listbox control in asp.net c#. How to display multiple item in listbox control and how to select multiple item from listbox contorl in asp.net. Multiple Selection box in asp.net.

Continue Reading ListBox Control in ASP.Net
Posted in ASP.Net Controls

DropDownList Control in ASP.Net

ASP.Net DropDownList Control – How to use dropedownlist control in asp.net c#. Understand difference between dropdownlist and listbox control in asp.net.

Continue Reading DropDownList Control in ASP.Net
Posted in ASP.Net Controls

AdRotator Control in ASP.Net

ASP.Net AdRotator Control – How to use Adrotator control in ASP.Net C#. Adrotator control is used to display the sequence of advertisement images on web page in asp.net.

Continue Reading AdRotator Control in ASP.Net
Posted in ASP.Net

Page refresh automatic in ASP.Net

Add meta tag in your Head portion and your page will automatically refreshed with 3 second interval.         <html xmlns=”http://www.w3.org/1999/xhtml” > <head runat=”server”> <title>Meera Academy</title>…

Continue Reading Page refresh automatic in ASP.Net
Posted in JavaScript

IF Statement in JavaScript

learn to use IF Statement in Javascript. Here we learn how to use IF Statement in Javascript and how to call javascript function on Button click events in HTML Documents.

Continue Reading IF Statement in JavaScript