Mar
30
2012

ASP Session and Application methods

asp

In this article we will experience how to keep information from the user in our server, that is, (Session method) and how to share information between users (Application method). Session method : The first time a user accesses to our pages some connections and disconnections takes place. During this process the server and the client will interchange information to identify each other (which could be very useful for further usage to us). Due to this [...]

Jan
30
2012

Animating list items using jQuery

js

Last weekend, I had some free time between my assignments or to say the truth I wanted to take a break :p from work, so thought of trying my hands on the animated lists using jQuery after which I ended up with this example. Such animated lists could be used for: Menus Animated lists Content toggling under a link And many more.. So why not just take this as a challenge and try to achieve [...]

Jan
20
2012

CSS : Basic Info

css

To write CSS, the most important thing is to know what selectors are and how they are used in website for styling web pages. You can use selectors to select the elements on a web page. CSS has its syntax which contains property and value for the selector. selector  { property : value } When declaring more than one property semicolon is used to separate them. If the property value contains two or more words [...]

Jan
16
2012

Random Key Generators in php

php

In one of my assignments, the application would allow the new user to register and login to the application. As soon as the user registers, he/she should receive a mail with their login credentials on the email-id that should be used while registration. So what I wanted was to randomly generate a password which should be mailed to the user on completion of registration. On completion of the task, I thought why not share few [...]

Jan
12
2012

Asp Email Script

asp

CDOSYS and CDONTS are built-in free mailing components that are used to send mails. Unfortunately Microsoft has discontinued CDONTS with windows 2000 server and higher once.So if you have used CDONTS and changed your server to windows 2000 or higher once you will have to update your Email component to CDOSYS. So let’s get going with CDOSYS ,the basic example is as follow: To add “Cc” and “Bcc” to the mail you are sending ,you [...]

Jan
5
2012

Indian iPad – Aakash: Tablet in Budget

akaash

Once when you heard that India will be having worlds cheapest tablet that too at 3 thousand rupees (which is approximately 10-12 times cheaper as compared to iPad), few questions arise then and there. Few of those questions will be, 1)    Can it compete with other tablets in the market? 2)    Will it have same/better performance as the iPad/Touchpad? 3)    Will there be other upgraded versions of the tablet or will the Android version be [...]

Jan
5
2012

Pre Like – Post Like pages in Facebook

fb

To create Pre Like – Post Like pages in Facebook you should have defined your Page Tabs settings present under your application settings page. If you have not defined then please refer to this link  ‘Creating Facebook Tab Page’. After creating tab in facebook open you website url ftp which you have specified for page tab to add a php page from which we are going to display the tab content. To create facebook applications, facebook provieds [...]

Jan
2
2012

Creating Facebook Page Tab

fb

After signing in to your account click on the link ‘Create a Page’ in the bottom of the facebook website to create your page and follow the process. After creating the page go to https://developers.facebook.com/apps . Create your app which we are using in our page tab. In App setting you will see your app id and secret. To add page tab using apps you will find ‘Select how your app integrates with Facebook’ In [...]

Dec
27
2011

Validate Date using jQuery

js

I was working on the similar assignment a day before , had few minutes before I was going to start a new work assignment so thought of sharing this with you. Well lets get going , I have created a function which takes date value as input and returns either true/false based on the logic of validation. Given below is the jQuery function which validates the date. The function performs following few points. Please have [...]

Dec
22
2011

jQuery is() method

js

jQuery “.is()” is a filtering method which can be used to check the current element or set of element against a selector, elements, a jquery object or a function. It return true if there is at least one match from the given argument. Let me put this in simple term with an example. Suppose you have an unordered list with set of li elements. For example, <ul> <li>Chrome</li> <li>Firefox</li> <li>IE</li> <li>Safari</li> </ul> And you have [...]

Pages:12»