Results > Posts Filed Under > Application Development

Dec 11
Post Image Posted by Seree.

Complete Guide to use IoC with ASP.NET MVC (Using Castle Windsor and MVCContrib) Part #1

1

Hi guys,
Today I’m going to share with you if you get stuck trying to learn IoC and implement it into your own ASP.NET MVC application.
I’ll not going to write a deep content about IoC but somehow I will share the short brief of the concept of IoC and how you can easily implement IoC in your ASP.NET MVC application using MVCContrib.
First of all, let’s share together what is IoC? and what it is for?
IoC stands for “Inversion of Control” which …

Read on »

Oct 6
Post Image Posted by Seree.

The most easiest method to implement a SEO-friendly URL for ASP.NET application

2

Well, as a ASP.NET developer. You and me know that it’s a bit hard to apply what we called SEO-friendly URL for ASP.NET applications.
What is SEO-friendly URL?
It’s a URL that search engine love and will result in a better ranking for your web pages/site.
Let’s say you have an accounting system software and your product URL is http://www.xxx.com/product.aspx?Id=432 //Search engine will never know what the product is all about. They just saw Id=432 which doesn’t make sense for them. Actually, it …

Read on »

Oct 16
Post Image Posted by Seree.

In research of a javascript library to be used with ASP.NET on my next project…

0

Hi fellow readers,
Today I come to share with you how I choose a javascript library to be used on my new project.
I’m not talk about choosing just an AJAX library but I want some ‘full’ set of library which including both AJAX core and user interface core.
Here are my choices before consideration…

jQuery
YUI (Yahoo User Interface)
ExtJs

Sorry that I didn’t included other libraries because I’m not impressed with any other at all.
First, jQuery, this is by far the best AJAX + effect …

Read on »

Mar 18
Post Image Posted by Seree.

Why you need validation in your web application?

0

Hi folks,
Did you ever use ASP.NET validation controls?
If you never heard or never use it before, see on the toolbox at the “validation” group.
Those are all validation controls.
- RequiredFieldValidator
- RangeValidator
- CompareValidator
- RegularExpressionValidator
- CustomValidator
- ValidationSummary
The main point of this control group is to be used to validate the input form entered by user before doing any postback.
But why?
As we can implement validation easily in code-behind.
Right?
It had to say Yes and No.
Yes, because validation coding in server-side (code-behind) is easier to code.
No, …

Read on »

Dec 19
Post Image Posted by Seree.

Cryptography in .NET – Part I

0

Hi folks,
Today, let’s see what .NET was provided to developer like us about cryptography.
In this post, I’ll talk about a brief of cryptography. How .NEt handle it and how many way to do some cryptographic in .NET.
For sample of implementation, I’ll cover it all from basic encryption to decryption, hashing, using message authentication code (MAC), hash-based message authentication code (HMAC) and even Digital signature. But it’ll continue to the next part.
Here we’ll focus to the cryptography in System.Security.Cryptography namespace.
.NET has …

Read on »

Nov 13
Post Image Posted by Seree.

Why my .style.left doesn”t work with FireFox?

6

This is a simple & stupid knowledge that I taken about 2 days to solve it.
I have a project that have to use this code….
var con = document.getElementById(“menu”);
con.style.left = “10″;
con.style.top = “20″;
When I run this code in Internet Explorer 6, 7.
I got it working like I want!
But when I try with Mozilla FireFox.
It never works!
Man! I hate DOM, if I have enough money. I’ll buy Microsoft and stop Internet Explorer project to reduce browser compatibility issues.
I try to …

Read on »

Nov 8
Post Image Posted by Seree.

Use JavaScript to change “float” style

8

Hey friends,
In a few days ago, I’ve just stuck with how to change “float” style in JavaScript and very confuse why it doesn’t work at all!
I’m using …
var obj = document.getElementById(“some1”);
obj.style.float = “left”;
No luck at all. I tried both on Internet Explorer and Firefox. Even I use Internet Explorer Toolbar and Firebug. I can change the style via that tools but no luck with JavaScript.
Silly?
I’m fool with DOM. I try to find a solution and suddenly found that.
In DOM, there are …

Read on »

Nov 4
Post Image Posted by Seree.

How do you do when dealing with cross-browser web development?

0

Hi friends,
I just want to know that how do you do when you’re dealing with cross-browser web development.
Which tools you are using?
How do you handle those all buggies browser?
What experiences you faced?
As I’m dealing with cross-browser web development project where I generally strict with XHTML 1.0 standard. (As I’m using Microsoft Visual Studio 2005 and there is built-in XHTML 1.0 validator. Also, it has a built-in CSS validator too.)
I generally focus to most popular browsers including Internet Explorer 6.x, 7.x …

Read on »

Oct 30
Post Image Posted by Seree.

Best tools when you are dealing with advanced web development

0

Hi friends,
Are you facing with the hell experiences when dealing with advanced web development?
First of all, We gonna clarify about what did I means for “advanced web development”.
For the sentence, I means that your web project are mostly dealing with client technologies. Such as those JavaScript, CSS, DOM, Ajax or even cross-browser compatibility issue. Those all are hard to track bugs and solve it.
After my bad experiences regards on this issue, I actually found that there are many useful tools …

Read on »

Oct 19
Post Image Posted by Seree.

How to randomly select records from SQL Server?

0

Hi all SQLers!
Last week I’ve found this quiz from my consultant customer. He has a scenario to let me help as a short describe here.

How do I select some records from SQL Server randomly?
It seems to be an easy question but what we can do if SQL Server doesn’t directly support this functionality! So, I decide to read on SQL Server’s online help to find out the solution and result on SQL Server don’t have any function that can select …

Read on »

 Page 1 of 2  1  2 »