Articles

Thursday, July 23, 2009 - 11:16
uniezuka

RadNumericTextBox is a really great server control provided by telerik.com. This is an input control which only accepts numeric inputs. Not only that, it also support formatting like it adds automatically commas and decimals.

Monday, July 20, 2009 - 15:38
chazy_lime

I had this problem a week ago. It involves adding a dropdown menu on frames. The menu is expected to span across involved frames. Aside from that, the dropdown is set to use a predefined image.

The problem stated above is easy to be solved at first glance. And indeed, I was able to solve it using a select tag. But to my dismay, select tag does not render the right background on IE like FF does.

Luckily, I figured something right. I shall show you how, and hope it works on your side as well.

Friday, July 3, 2009 - 14:07
uniezuka

On this article we will show you how to create/draw basic shapes (that would be Circle, Triangle, Rectangle, and Square) using ASP.Net on a website. We will also set/compute the area, radius (for Circle), base(for Triangle), and some other operations that is related to a specific shape.

To get started we will create a Point2d class, this class handles the creation of X and Y coordinates.

Tuesday, June 23, 2009 - 13:18
chazy_lime
SQL STATEMENT FUNCTION SYNTAX
AND - displays a record if both the first condition and the second condition is true.
Monday, June 22, 2009 - 22:19
chazy_lime

There are cases where we need to identify the browser that the user is currently using. And there are many ways to do it as well. One common way is using javascript.

Below is a script which you can use to achieve the above requirement.

Sunday, June 21, 2009 - 13:25
uniezuka

[Update: 6/23/2009 Included the code]

This is the second part of this article. This part will now demonstrate how to integrate the facebook connect to our existing website. Be sure to read the Part 1 of this article as we will be using the website that we have created on that part. We will be integrating Facebook Connect on that website.

Sunday, June 21, 2009 - 01:34
chazy_lime

Last week, I stumbled upon a task where I needed to download images from Flickr. I was instructed not to use serialised PHP output formats. They preferred to use REST(Representational State Transfer). I admittedly say that the task was quite new in my case so I had to study how to do it. I didn't even know how to perform the donwloading of these images and then generate the list to my page. Gladly, uniezuke, also a  deviantcoder member, guided me on how to do it.

Here's a snippet of what I did. I am going to post it here so others may use it as well.

Sunday, June 21, 2009 - 00:29
uniezuka

This is a two part article that will teach you how to create an ASP.Net web application with Membership and Role Provider and integrate Facebook connect to it. We will be using Visual Studio 2008 on this one.

The first part is creating/setting up Membership and Role Provider to your web application. OK then let us start up.

Setting up ASP.Net Membership and Role Provider

First we need to create a website and on our example let us just call it “MyWebsite”.

Thursday, June 18, 2009 - 00:49
admin

There are many ways to create a drop down menu on your site. You can use javascript, css, or a combination of both. Others may use the so-called Sucker Fish technique.

But in our case, here on our site, we used a module in drupal and we'll show you how to do it.

Monday, June 15, 2009 - 01:45
chazy_lime

I know it's not a good practice to use hacking css codes, but there are times that we really need to.

One problem I encountered was displaying fonts. I have observed for so many times that fonts on safari are larger than on Firefox and Internet Explorer. It sometimes go out of space. Thus, ruining the entire template.

I was lucky to found one solution on net. It's how to hack css on safari. [Note: As much as possible, refrain from hacking your css codes.]