|
|
|
|
|
Total Hits: 18 | Today: 0
|
Author: Gary Stafford
|
Rating:
|
|

Many of us have used ASP.NET Web Forms for years, combined more recently with ASP.NET AJAX, to build robust web-solutions for our clients. Although Web Forms are not going away, it is also not the only technology available to ASP.NET developers to build web-solutions, or necessarily always the best. A developer’s ability to understand and implement multiple development technologies is critical to ensuring the best solution for the client....
|
|
|
|
Total Hits: 75 | Today: 0
|
Author: meglio
|
Rating:
|
|

Some browsers do not support all W3C standards and you will face a problem when you want to adjust IFrame height on its content using JavaScript. I have spent some hours experimenting with different DOM-objects and I have found quite a good solution for Mozilla, Internet Explorer and Opera browsers....
|
|
|
|
Total Hits: 99 | Today: 0
|
Author: K Baruah
|
Rating:
|
|

This is a simple tutorial illustrating how to create Web-Based image slideshows with some cool transition effects similar to those found in Microsoft's PowerPoint. The slideshow cycles through the set number of images without having to reload the rest of the page. There are about 23 different transitions to choose from. There is also an option which chooses a number at random from the other 23 transitions. These transitions can also be applied to images by triggering small snippets of JavaScript...
|
|
|
|
Total Hits: 103 | Today: 0
|
Author: XanderXP
|
Rating:
|
|

Your browser uses the HTTP protocol when viewing web sites and unfortunately cannot keep state between sessions and a web site refresh. As the Internet evolved, browser authors realized this was a shortcoming and later introduced cookies to enable web site persistence. Browsers solve this problem by allowing tiny amounts of data to be serialized from a small database/textfile(s) that your browser keeps track of. Cookies are analogous to the Windows registry, in that, you as the programmer never ...
|
|
|
|
Total Hits: 30 | Today: 0
|
Author: Clayton Rumley
|
Rating:
|
|

Do you ever wish that you could simply define a class in PHP and have some magic process turn it into asynchronous function calls in JavaScript on the client-side? Microsoft did it in ASP.NET with their ScriptService and ScriptMethod attributes for web services, but PHP appears to lack similar functionality. Until today. Welcome to the deceptively small, deliciously complex, and deceivingly easy-to-use DigifiScriptService class....
|
|
|
|
Total Hits: 92 | Today: 0
|
Author: Harkaran Kaushal
|
Rating:
|
|

ASPX Tricks is an article to access aspx variable on code behind.This articles can help you in how to access javascript variables in code behind. After post back. Usually after post back javascript variables resets to default value and if we want to access them after doing some operation to them. For example I want to access Where to get where mouse click is happened on client side on Server side....
|
|
|
|
Total Hits: 493 | Today: 0
|
Author: Deepankar Sarangi
|
Rating:
|
|

This article examines the creation of an insert script in Oracle by making use of the substitution function in UNIX. Deepankar begins with a short introduction followed by the various parameters of the function. The author provides a detailed analysis of the code along with relevant screenshots....
|
|
|
|
Total Hits: 49 | Today: 0
|
Author: Ted Coombs
|
Rating:
|
|

Like the Internet itself, e-commerce is evolving. Today's e-commerce companies are allowing their customers to plug into existing catalogs and ordering systems, creating new synergistic relationships. Some companies are even adding real-time chat with customer service personnel.This article gives you an overview of some of the new e-commerce concepts and implementations that are helping forge those new relationships with customers, vendors, and shipping companies.The importance of these relation...
|
|
|
|
Total Hits: 69 | Today: 0
|
Author: Dino Esposito
|
Rating:
|
|

If you're involved in Web development you may have faced a problem that you couldn't find a good solution for—making client-to-server calls outside the current page. For example, you might want to validate the content of a textbox against data stored on the server asynchronously, without interrupting the continuity of the work or without forcing a full page refresh, which is particularly heavy for UI-rich pages. How would you code such an out-of-band call from the client to the server and back?<...
|
|
|
|
Total Hits: 46 | Today: 0
|
Author: Fritz Onion
|
Rating:
|
|

One of the first steps in building a long-lived ASP.NET project is to define standards for how to use the many features of the platform. Without such standards, it is easy for the project to degenerate into a jumble of different development techniques and styles. One developer may use Master Pages extensively in her part of the project, for example, while another favors nested user controls. The end result is a tangle of different techniques applied across the application, making it difficult to...
|
|
|
|
Total Hits: 222 | Today: 0
|
Author: stewartamackenzie.
|
Rating:
|
|

Javascript and the DOM in conjunction with ASP.net offer a good environment to leave some of the work of finding text to the client, cutting down on server calls and producing a faster experience. The technique used here is to locate and highlight text in a page when possible using javascript, and when it can't be found to go back to the server to see if it can find it. I haven't come across other examples of using the DOM for highlighting search results and thought others might find it a helpfu...
|
|
|
|
Total Hits: 272 | Today: 0
|
Author: Derek Petillo
|
Rating:
|
|

Any web programmer will have good tools to manipulate, read, and write query strings and cookies on the server side. A while back, when trying to utilize this information on the client side, I found the available JavaScript functions cumbersome for retrieving and "storing" multiple pieces of cookie and query string data. They lacked what the server side model has, which is an associative array to retrieve cookie and query string key/value pairs. So I developed the two classes Cookies and QuerySt...
|
|
|
|
Total Hits: 110 | Today: 0
|
Author: Dino Esposito
|
Rating:
|
|

Most Microsoft® ASP.NET controls are designed to be browser independent; they generate plain HTML markup that the majority of browsers easily understand and process. As a page developer, you can control to some extent the version of the HTML language used to generate the browser response. Some of the ASP.NET controls (for example, validation server controls) detect the capabilities of the underlying browser and adapt their response accordingly. In many cases, this means that the markup is enrich...
|
|
|
|
Total Hits: 35 | Today: 0
|
Author: Alexander Fedorenko
|
Rating:
|
|

One of the popular activities on the web is taking part in web chats - collaborative applications, which provide the mechanism to take part in a dialogue between two or more users in real time. A useful addition to any web site is the ability to group users by interests in separate chat rooms. Some sites allow participation in chat without registration, but most do not, as registering can provide a safer chat and more precise controlling. An even more secure environment for chatting, is where th...
|
|
|
|
Total Hits: 39 | Today: 0
|
Author: Mahdi Yousefi
|
Rating:
|
|

When you work with a list of objects in Ajax, it is very important to add, delete, find objects in the list but JavaScript array does not contain any of them. We need to create an advanced list that works with all objects. In .NET platform, there is "Generic List" class that can do the same. My function is like that one. We can say its name: an Array with dynamic size. (In JavaScript, it is impossible to remove items from an array or resize an array.)...
|
|
|
|
Total Hits: 95 | Today: 0
|
Author: alfi uziel
|
Rating:
|
|

This is a short and simple form validation code that uses regular expression to compare the user input to the pattern rule defined by a regular expression string. form validation code will either use "if" statments, or regular expressions to validate that the user entered the currect information . The main difference between this code and others , is that the regular expression pattern, and the error message, both are located inside the html control tag and not in the function itself....
|
|
|
|
Total Hits: 42 | Today: 0
|
Author: Chris Maunder
|
Rating:
|
|

We've all seen sites that feature drop down lists that automatically take you to your selection without you needing to make the cumbersome and lengthy step of hitting a "Go" button. If you've ever wondered how they do this then as you probably expected it's very simple....
|
|
|
|
Total Hits: 71 | Today: 0
|
Author: Amin Habibi S.
|
Rating:
|
|

The Persian Calendar is used in most countries where Persian is spoken, although some regions use different month names. The Persian calendar is the official calendar of Iran and Afghanistan, and is one of the alternative calendars in regions such as Kazakhstan and Tajikistan. The Persian calendar is based on a solar year, and is approximately 365 days long. A year cycles through four seasons, and a new year begins when the sun appears to cross the equator from the southern hemisphere to the nor...
|
|
|
|
Total Hits: 61 | Today: 0
|
Author: Mikesdotnetting
|
Rating:
|
|

This article looks at efficient use of jQuery tabs when displaying data. Specifically, it covers how to lazy-load data, so that it is only accessed and displayed if the tab is clicked. Lazy Loading is a well-known design pattern that is intended to prevent redundant processing within your application. In the case of tabbed data, there seems little point retrieving and binding data that appears in a tabbed area that no one looks at. So, this examples covers how to defer data access and display un...
|
|
|
|
Total Hits: 37 | Today: 0
|
Author: Dino Esposito
|
Rating:
|
|

Last month (September 2000) I gave you a quick tour of the script technologies you need to create a client-side environment that can execute ASP pages. I built a custom browser in Visual Basic® that is capable of processing ASP pages without Microsoft® Internet Information Services (IIS). This browser renders the HTML contained in an ASP page when you double-click on the ASP file. This information allows you to write ASP pages that are more versatile; they'll work both online and offline. When...
|
|
|
|
|
|