Showing posts with label Programming. Show all posts
Showing posts with label Programming. Show all posts

17 February 2014

Implement of POP in ASP dot net

Follow this steps:
  • Add button in the design view.
  • Double click the button in design view.

(If you found this article useful then share with your friends.)

How to make DropDownList work with OnSelectedIndexChanged in ASP.net

Problem: Working with ASP.net , I got stuck working with dropdownlist . I chose the first item which would be copied to a textbox using onSelectedIndexChanged() . But it fails. How get the text value after clicking on dropdownlist on first click ?


(If you found this article useful then share with your friends.)

24 December 2013

Convert HTML code to show in post

Using HTML encoder Tool , you can show the code snippet inside a post .

For example: If you like to show a code snippet in a post, just copy the code and paste inside the text box in visual mode / Compose mode depending on your editor.

(If you found this article useful then share with your friends.)

21 December 2013

HTML encoder tool

Write your code you like to show in your post :

HTML Encoder:




(If you found this article useful then share with your friends.)

12 December 2013

How to Convert newline to comma from List of Words

newline to comma
Newline to Comma
Sometimes you need to find out the duplicate words written in a list of words written with newline, the easy way of converting back to comma separated sentience is to convert newline into comma or any other separator.

(If you found this article useful then share with your friends.)

How to Convert comma with newline in a Sentence

comma to newline
Comma to Newline
Sometimes you need to find out the duplicate words written in the comma seperated sentence, the easy way of finding is just convert the words seperated by newline.

(If you found this article useful then share with your friends.)

11 December 2013

BFS Graph implemented in C

BFS Graph
Breadth First Search Graph
Read below about BFS Graph implementation in C.( Breadth First Search )

Problem : Show minimum cost path from source to destination using BFS at source. Solution in C Language given below:

(If you found this article useful then share with your friends.)

08 December 2013

Understanding the Tween class in Flash 8 ActionScript 2

The Tween class lets you move, resize, rotate, or fade a movieclip using only ActionScript. You can animate any property of a movieclip, such as x, y, rotation, scaleX, scaleY, and alpha. You can also specify how long the animation will last in either seconds or frames. 

(If you found this article useful then share with your friends.)

03 December 2013

What Database to use for Flex Standalone Application

Adobe Air helps to provide a platform for running a flex project as desktop application.
flex
There are some database that are good for flex desktop application.


(If you found this article useful then share with your friends.)

07 June 2012

Using Array in C sharp #

In C#(Sharp), Arrays is used to store different items  and perform different operations on them individually. Arrays are declared similar to variables with [] brackets after the data type.  To use the array, it needs to instantiate.

(If you found this article useful then share with your friends.)

03 November 2011

Code Skeleton of AJAX - Ready to use

ajax
AJAX means Asynchronous JavaScript and XML. It is a technique for creating fast and dynamic web pages. It is used to change or update a section without refreshing the whole webpage.

(If you found this article useful then share with your friends.)