-
|
Recently, I validated my website using HTML Validator . One strange error I found from validation result was: Attribute "border" exists, but can not be used for this element. I was not able to figure out the actual cause of this error at that time. I reviewed my asp.net page and there wasn't any border property used for any HTML tags. I searched a lot and found a solution somewhere on microsoft support site. I forgot the exact URL that gave actual solution. But, what they said is: Put ClientTarget...( read more ) Read More...
|
-
|
In this post, you will lean to Test Email Notification without configuring SMTP Server for your ASP.NET application....( read more ) Read More...
|
-
|
This was originally an email I sent to .NET team in my company, then decided to share as a blog post. The problem: Let’s say you have a complex application, and this application (or part of it) runs very slowly. No bug s in results, no errors or exceptions, but it just so slow! Now you want to know which part of your code is the reason, which method(s) you need to go and modify., which methods take so long to execute or consume so much memory/CPU. How would you know that? Let’s say you want to improve the performance of your application in general (say add caching or such), so, you want to identify which parts of your code deserve your attention and will really make difference (so that you don’t waste your time on optimizing something that will...
|
-
|
The summer 2009 is more than hot and there is finally some refreshment for the overheated ASP.NET developers and web designers available. Axinom is providing your own full featured web site based on the Enterprise Web CMS and Microsoft .NET Framework (ASP.NET) for a fixed-price of 1400 USD. Your personal web site contains flexible and user generated dynamic lists (RSS) and contact forms, integrated user registration, protected content areas, user registration with individual rights to view content, newsletter subscription and publishing tool (up to 100.000 users inclusive!), a shop functionality to offer and sell your products, state of the art features like "recommend this page" and "rate this content", video player control...
|
-
|
There has been numerous discussions happened on web site performance, ranging from UI design to Site H osting. Out of this, one of the important step is, to reduce the size of Http Response size. Optimizing Http Response will considerably reduce the page loading time at the browser. There are many ways to create optimized HTML markups to improve client-side performance. I would like to explain one such a way of designing web page. The Loading time factor will mainly depends on the web page size that is going to download at the client's browser. In order to achieve this as a web developer, you will have to work on the following things at least. HTML ->...
|
-
|
In one of my projects I found this error Inconsistent accessibility : return type...................... is less accessible than method ......... It was a quite strange error for me as I have not seen the same in past. My classes were defined as: class MyClass1 {} class MyClass2 {} class MyClass3 {} Solution to this problem is very easy, all I did is add public with all my classes. public class MyClass1 {} public class MyClass2 {} public class MyClass3 {} And once again, the day is saved by "Powerpuf Girls", I mean by adding public :). Read More...
|
-
|
In one of my projects I have been asked to implement temporary security on sepcific module for internal usage and it was also suggested that I will not be putting more efforts on the same. First thing came in my mind was Membership/RoleProvider, but as I advised my planned solution they surprised me with the decision that I will not be using these providers and I should be using something more simpler and I was like Duh!!! Any way I started thinking about a much more simpler solution as I have been alotted the biggest time period ever of 10-15 minutes max for this task :). OK now I guess I should come to the point. During this process I realised that web.config credentials can be a good option as I personally don't wanted to implement any...
|
-
|
I’m going to Paris France for my vacation this year! I’m very excited about it because I’ve always been a bit of a Francophile. Unfortunately, I don’t speak French so, being a IT professional, I’ve sought a technological solution for the language barrier. I’m not sure that I’ll need to speak any French because I’m going on a guided tour which should reduce my interaction with the locals. I’ve already blogged about ASP.NET’s support for internationalization and browser languages on my WordPress blog at: ASP.NET 2.0 Culture – Web Site Internationalization . I also blogged about Elgg’s support for languages at Elgg Languages . I’ve done some additional research since then into how PHP supports internationalization and I looked at how all the browsers...
|
-
|
What I’ll be presenting? Maps, maps and a little more maps! SoCal Code Camp What’s the SoCal Rock and Roll Code Camp?: Code Camp is a place for developers to come and learn from their peers. This community driven event has become an international trend where peer groups of all platforms, programming languages and disciplines band together to bring content to the community. Schedule here Who organizes this code camp? Daniel Egan , Michele Leroux Bustamante & Woody Pewitt , many Microsoft evangelist in that list! Hope I’ll see your there. Cheers Al Read More...
|
-
|
As you all know I have been working hard writing, eating and bleeding commerce server 2007 for the past year. One thing I could never get past was why I could not do a site cache refresh from the tools provided with commerce server 2007 . The tools that are provided are what you would call management tools (mostly well written web services.). Within these awesome tools is a cool little button called refresh. It’s sole purpose is to refresh the catalog,user base and or discounts without killing the...( read more ) Read More...
|