Wednesday, December 15, 2010
know about techblog
Friday, December 10, 2010
"What is AJAX exactly?"
# AJAX stands for Asynchronous Javascript And XML. It is a group of interrelated web development techniques used on the client-side to create interactive web applications.
# It is all about updating parts of a web page, without reloading the whole page.
# AJAX is not a new programming language, but a new way to use existing standards.
# Before you continue you should have a basic of HTML / XHTML, CSS and JavaScript/DOM.
# AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.
# Google Maps, Gmail, orkut, Youtube, and Facebook are the excellent examples of applications implementing AJAX.
Read More @ AJAX-TECHBLOG
Introducing TECHBLOG
This is the only Blog which provides you technology updates and details on ASP.Net, AJAX, JQuery & Javascript at one place. And we would keep on expanding this tech-blog with more upcoming platforms and sections.
This Blog is a sort of Platform for everyone. Feel free to Explore, Query and get Suggestions regarding technical issues and matters. We have tried to include and cover most of the technology which are in market trend as of now. Cuurently we have included Asp.Net, Javascript, AJAX & Jquery . This blog is created as a part of technical upgradation and utilization of skills possessed by Sound team of technocrats within Innovative Infosolutions and we thank them for making a tremendous effort.
Our Team is trying their best to put best of the information about upcoming technologies/concepts in a simplified manner.
We have also distributed our knowledge base as per different platforms and technologies so that developers and other individuals seeking help can reach their areas without wasting much time.
Implementing Ajax in ASP.NET
By Team Innovative - Innovative Infosolutions
Explore our site easily through our innovative infosolutions - sitemap
Lets get Introduced to JQuery first
# JQuery is the most popular JavaScript library in use today.
# You can use jQuery in all the web based applications irrespective of the technology.
# The jQuery code is very simple and easy to learn.
# It is fast & concise JavaScript library which simplifies the creation of animations, communications to server requests, document transversing and event handling.
Latest Happenings in ASP.Net 4.0!!!
As you all might be knowing that currently Visual studio 2010 is released and we have dot net framework 4.0 available as on date. so here are the Extraordinary Features about it.
- 1). Web.config Refactoring.
- 2). Extensible Output Caching.
- 3). Auto-Start Web Applications.
- 4). Permanent Page Redirection.
- 5). URL Length Expansion.
- 6). JQuery integration Now with ASP.Net.
- 7). Enhancements in Web Forms.
- 8). ASP.NET MVC feature.
- 9). Including ASP.NET Chart Control.
Visit Techblog for more details on each feature.
Statements in Javascript
# Collection of such statements is nothings but a code block in Javascript.
# For ex:
document.write("Hello World!");
# One should always remember that Unlike HTML, JavaScript is case sensitive. Hence one should be very precise while writint JavaScript statements, creatint or calling variables, objects and functions.
# In typical programming languages like C and PHP, the end of a statement is marked with a semicolon(;), but semicolon is optional in JavaScript.
# In JavaScript, the end of a statement is most often marked by pressing return and starting a new line.
Categories of Statements
* Conditional Statements.
* Loop Statements.
* Object Manipulation Statements.
* Comment Statements.
* Exception Handling Statements.
# In next blog we will cover each category with appropriate subcategory and examples.
What is AJAX exactly?
# AJAX stands for Asynchronous Javascript And XML. It is a group of interrelated web development techniques used on the client-side to create interactive web applications.
# It is all about updating parts of a web page, without reloading the whole page.# AJAX is not a new programming language, but a new way to use existing standards.# Before you continue you should have a basic of HTML / XHTML, CSS and JavaScript/DOM.# AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.# Google Maps, Gmail, orkut, Youtube, and Facebook are the excellent examples of applications implementing AJAX.Javascript Basics
- Basically JavaScript is the scripting language of the Web.
- JavaScript is usually embedded directly into HTML pages.
- JavaScript is an interpreted language (means that scripts execute without preliminary compilation).
- It can be used by anyone without purchasing a license.
- Do not confuse Java & Javascript as both are separate one and have different architechture.
- It's syntax is very easy to understand and similar to C and JAVA.
- Cross-browser support.
- Validating data at Client side.
- Being able to create more sophisticated user interfaces.
- No significant extra download time will be added to a page by using JavaScript on it.
- No need to download a plugin before user can view your JavaScript.
- No need of any special editor for Javascript, any plain text editor will do.
For more details on javascript blog visit Javascript Techblog.
Implementing AJAX in ASP.Net
# The main entity enabling AJAX to be used in ASP.Net is AJAXControl Toolkit. # The Ajax Control Toolkit contains a rich set of controls that you can use to build highly responsive and interactive Ajax-enabled ASP.NET Web Forms applications. Follow the steps below to download and start Implementing AJAX in ASP.Net.
Step1: Download the Ajax Control Toolkit.# The first step is to download the Ajax Control Toolkit. You can download the latest version of the Ajax Control Toolkit from CodePlex. # Click the Downloads tab at the CodePlex site to see the list of available Ajax Control Toolkit downloads. If you are using Visual Studio 2008 then you should pick the version of the Ajax Control Toolkit for .NET 3.5. If you are using Visual Studio 2010 then you can use either the .NET 4 or .NET 3.5 versions of the Ajax Control Toolkit.
# follow the steps as shows in figure below.
Posted by Web Development Bhavnagar
Read more at AJAX TECHBLOG
How to Start with Jquery ?
You do not need to refer any tedious article or ebook. Just have a look at following steps and start implementing it.
Step1: Download Jquery library from http://code.jquery.com/jquery-1.4.2.min.js.
Step2: Next, you’ll need to import the .js file into your solution.
Step3: Just to have a basic lookaround of syntax lets have an example.
In CSS if we write as #container a { ... }
In JQuery it is written as $('#container a');
So happy moments for designers who have enough grasping & command over html & CSS stuff.
for more details on jQuery with examples visit techblog.
Monday, December 6, 2010
Lightweight Accordian in jquery
# Have a look at the tutorial for creating Accordian in Jquery with demo of example and download link.
# Lets have a look at each step and sytax.
$(document).ready(function(){
$(".accordion h3:first").addClass("active");
$(".accordion p:not(:first)").hide();
$(".accordion h3").click(function(){
$(this).next("p").slideToggle("slow")
.siblings("p:visible").slideUp("slow");
$(this).toggleClass("active");
$(this).siblings("h3").removeClass("active");
});
});# The first line will add a CSS class active to the first H3 element within the div class=accordion.# The "active" class will shift the background position of the arrow icon.
# The second line will hide all the p element that is not the first within the div class="accordion".
# When the h3 element is clicked, it will slideToggle the next p and slideUp all its siblings, then toggle the class= active.