Uploadify: Adding more files to the queue while uploading
07
Jul
Uploadify was created to be an easy-to-implement solution for multiple file uploads. As a jQuery plugin, the Uploadify implementation is simple and highly-customizable.
Visit WebSite
Lot of people ask about adding more files to the queue when the first upload start, the button to “browse” another file don’t work anyway.
This feature is not available in latest release.
So, I found a way to implement this from own code, It will not be a complete fix but allows you to handle oth ....Read Full Article
SQL Import Export from linked server
07
Oct
There is always a need to import/export tables or data from different database. The common scenario is when you need that data to your local database that is in your live database.
For this purpose, many techniques are available, but my technique is simple and modifiable as it takes every table from linked server and makes a query against that and that query can be changeable by you. (e.g you can specify where clause as well).
So first of all you will need to know from which database you wan ....Read Full Article
Simple Sequential WorkFlow Tutorial C sharp
29
May
A workflow is essentially a way of documenting the activities involved in completing a unit of work. Typically, work “flows” through one or more activities during processing. These activities can be performed by either machines or by people, and can be as simple as defining the sequence of pages in an Internet application, or as complex as managing documents or products that must be seen, altered, and approved by any number of people.
You can host Windows WF workflows in any type o ....Read Full Article
Google Visualization API
31
Mar
The Google Visualization API lets you access multiple sources of structured data that you can display, choosing from a large selection of visualizations. Google Visualization API enables you to expose your own data, stored on any data-store that is connected to the web, as a Visualization compliant datasource. Thus you can create reports and dashboards as well as analyze and display your data through the wealth of available visualization applications. The Google Visualization API also provides a ....Read Full Article
Custom Meta Tags
23
Mar
Many search engines uses Mata tags for searching websites contents. In ASP.NET we can make separate meta tags for all pages from database or any other techniques instead of using one masterpage meta tags.
Call following function in page load of every page or in master page.
public void BindPageMetasandTitle()
{
HtmlMeta MetaDescription = new HtmlMeta();
HtmlMeta MetaKeywords = new HtmlMeta();
MetaDescription.Name = "Description";
MetaKeywords.Name = "Keywords";
....Read Full Article
Google Translate
05
Mar
Use Google translate for your website to translate many languages and show on website with the same format.
I have done this using javascript. Different techniques can be used to apply google translate for your website.
Languages supported by Google translate
Afrikaans
Albanian
Arabic
Belarusian
Bulgarian
Catalan
Chinese
Croatian
Czech
Danish
Dutch
English
Estonian
Filipino
Finnish
French
Galician
German
Greek
Haitian Creole
Hebrew
Hindi
Hungarian
Icelandic
Indonesian
Irish
Italian
Japanes ....Read Full Article
Google Weather API
19
Feb
Google Weather Provides weather information from the world. They accepts a wide range of parameters like [city],[country] e.g. London,England – or postcodes, ISO country codes (UK,DE etc.), Lat/long.
To integrate it with asp.net just use below function and it will return weather information for current and next 4 days with images according to weather.
public static void GoogleWeather(string location)
{
HttpWebRequest GoogleRequest;
HttpWebResponse GoogleResponse = nu ....Read Full Article
RxNorm API
19
Feb
RxNorm API used to get codes for following coding systems:
AMPID – Alchemy Marketed Product Identifier
GCN_SEQNO – Generic Code Number
GFC – Generic Formula Code
GPPC – Generic Product Packing Code
GS – Gold Standard Alchemy identifier
LISTING_SEQ_NO – FDA Identification Number
MMSL_CODE – Multum identifier
NDC – National Drug Code
SNOMEDCT – SNOMEDCT Identifier
SPL – Standard Product Label
UMLSCUI – UMLS Concept Unique Identifie ....Read Full Article
Webservice from javascript
08
Feb
In this post, I will show you how to use web service from javascript using AJAX script manager.
Below example will show you how to get values from textfields and send that values to webservice and show the results on screen without any post back.
Step 1: Add webservice to your project and uncomment Script service:
[WebService(Namespace = "MyServ")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment ....Read Full Article
JSON
31
Jan
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition – December 1999. JSON is a text format that is completely language independent but uses conventions that are familiar to programmers of the C-family of languages, including C, C++, C#, Java, JavaScript, Perl, Python, a ....Read Full Article