janko

Stories submitted by janko

BlogEngine.NET in Serbian(leonissima.com)

submitted by jankojanko(2555) 2 years, 7 months ago

Download serbian resources for BlogEngine.NET read more...

add a comment |category: |Views: 7

tags: another

Crazy Wheels - Funny BlogEngine.NET theme(jankoatwarpspeed.com)

submitted by jankojanko(2555) 2 years, 10 months ago

Crazy Wheels is another free BlogEngine.NET theme by jankoatwarpspeed.com. It is a simple, colorful, three column theme. Is has been published under Creative Commons License which means that you can use it for personal and commercial use as long as you keep the credits. read more...

add a comment |category: |Views: 275

tags: another

BlogEngine.NET Theme Pack released(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 1 month ago

Finally a new Theme Pack for BlogEngine.NET has been released read more...

add a comment |category: |Views: 86

tags: another

Discussion: Why web designers often use PHP over ASP.NET?(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 2 months ago

Some time ago my colleague asked me "I like to read blogs about web design, but why are they mostly PHP-oriented?". Huh, really, why? I haven't thought about it seriously before. read more...

add a comment |category: |Views: 27

tags: another

What if your contact form fails?(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 2 months ago

Did you ever think about it? Someone types the message, clicks on send and gets the error message like "Something went wrong. Sorry...". Ok, what now? How TF can I send you a message? Read in this article. read more...

1 comment |category: |Views: 257

tags: another

BR element sucks!(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 3 months ago

You know how it goes. Designer creates the design templates or whatever and then developers have their say. Sometimes, it happens that they mess up something. Among many design issues caused by developers, one in particular really drives me me nuts - incorrect usage of <br/> element. I often find that <br/> element is being used to create layout. And this is simply - incorrect. read more...

add a comment |category: |Views: 12

tags: another

Best of the web - my pick for October 2008(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 3 months ago

There were a lot of high quality articles dawned in my Google Reader last month. Chris Spooner (Blog.SpoonGraphics) posted two awesome tutorials on how to create a modern blog design. Angie and Robert Bowen (Arbenitng) launched Social Media Directory for Designers. Dave Ward (Encosia) shared & of his favorite jQuery plugins for use with ASAP.NET. I published Handycons, free hand-drawn social media icon set, and I'm working on Handycons II. read more...

add a comment |category: |Views: 507

tags: another

You should never use flags for language choice(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 3 months ago

Flag icons are pretty (especially fam-fam-fam icon set). But flag represents a country, not a language. Isn't it obvious? No, it's obviously not! While I surfed the web yesterday I found several websites that use flags for language choice. Here are a few reasons why you'll never want to do that. read more...

add a comment |category: |Views: 13

tags: another

Easy way to improve your image gallery using jQuery(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 5 months ago

Let's say you are browsing a CSS gallery and you want to check out some new and beautiful website designs. And you are of course interested in some details - for example, which category design belongs to, what's the rating or whatsoever. This information could be rendered below thumbnail, but there are other, more attractive ways of displaying additional data. In this article we'll see how to improve image gallery with a simple trick. read more...

1 comment |category: |Views: 381

tags: another

Google Chrome - cool browser or headache for web developers?(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 5 months ago

Yesterday, Google launched a new browser, Google Chrome. I download it and tried it of course, but aside from my impressions there is a big question I asked myself. Will this be a headache for web developers? read more...

add a comment |category: |Views: 3

tags: another

Amazing web design articles of Summer 2008(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 5 months ago

This is the second part of best summer 2008 articles, but this time focus is on web design. Again, there was a lot of great articles, tutorials and resources but I wanted to keep this list as short as possible. So these are the best of the best, at least by my opinion. read more...

add a comment |category: |Views: 10

tags: another

Amazing web development articles of Summer 2008(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 5 months ago

The summer is near its end and I think it's a good time to see what was hot during past three months. There was enormous number of great articles which made me spend a lot of time selecting the best of the best. In this article I'll focus on web development, such as jQuery, ASP.NET, SEO and in the next article we'll see what was hot in web design. read more...

add a comment |category: |Views: 9

tags: another

URL rewriting in ASP.NET web applications(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 5 months ago

So, you hate such URLs Or you'll hate it after you realize how easy it is to make it nicer. Besides all, URL rewriting will improve your rankings on search engines. Search engines like Google will easily index your "static" URLs, instead of dynamic URLs. There are several ways to accomplish URL Rewriting. I'll explain how to do this by using HttpModule and how to overcome the postback bug that is the outcome of URL rewriting. Suppose you have a content management system that stores entire pages in the database. So you can have a Home page, and Home page can have sections Products and Services, and each one of these can have their own child pages or sections, and so on. So we want dynamic URL like this: Default.aspx?SectionID=5&ItemID=22 to look like /catalogue/furniture/chairs/chair5.aspx or whatever the business logic requirement is. In the example in this article I will not use a database in order to keep it simple, but you imagine there is a database that keeps the URL for each page. I'll use hard-coded Dictionary that will keep some sample pages. Note: You can download the full code in the attachment. First, we'll make a data access object that will search the database for requested url and return its dynamic url. These are the methods in SampleDAO that will simulate the database and getting the url from there: public string GetRealPath(string requestedUrl) { string path = ""; Dictionary<string, string> paths = GetPathsFromDatabase(); if (paths.ContainsKey(requestedUrl)) paths.TryGetValue(requestedUrl, out path); return path; } private static Dictionary<string, string> GetPathsFromDatabase() { Dictionary<string, string> paths = new Dictionary<string, string>(); paths.Add("/URLRewrite/FirstSection/Default.aspx".ToLower(), "/URLRewrite/Default.aspx?SectionID=1"); paths.Add("/URLRewrite/SecondSection/Default.aspx".ToLower(), "/URLRewrite/Default.aspx?SectionID=2"); paths.Add("/URLRewrite/FirstSection/Page1.aspx".ToLower(), "/URLRewrite/Default.aspx?SectionID=1&Item=1"); paths.Add("/URLRewrite/FirstSection/Page2.aspx".ToLower(), "/URLRewrite/Default.aspx?SectionID=1&Item=2"); paths.Add("/URLRewrite/SecondSection/Page1.aspx".ToLower(), "/URLRewrite/Default.aspx?SectionID=2&Item=1"); paths.Add("/URLRewrite/SecondSection/SubSection/AnotherOne/Page5.aspx".ToLower(), "/URLRewrite/Default.aspx?SectionID=2&Item=5"); paths.Add("/URLRewrite/Default.aspx".ToLo read more...

3 comments |category: |Views: 301

tags: another

Janko At Warp Speed reached 1000+ subscribers!(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 5 months ago

After four months of blogging Janko At Warp Speed broke the boundary of 1000 subscribers. Another milestone that this blog celebrates is 200,000+ visits! One thing is for sure - this couldn't be done without your comments, emails, constructive criticism and all your help. THANK YOU! read more...

add a comment |category: |Views: 10

tags: another

13 features I'd like to see in BlogEngine.NET(jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 5 months ago

As you probably know by now I use BlogEngine.NET as my blogging platform. In order to become more powerful engine I suggest thirteen (more or less) common features, like ability to unsubscribe from comment notifications, group comments&trackbacks and much more. read more...

add a comment |category: |Views: 238

tags: another

Wild Nature - Wild, wild BlogEngine.NET theme (jankoatwarpspeed.com)

submitted by jankojanko(2555) 3 years, 6 months ago

If you have wild spirit and you like nature then this might be a right theme for your blog. Wild Nature reflects pure, untouched nature washed in rain. Shades of green dominate the theme, but a touch of yellow and light brown make it looks more live. Take a look at the screenshots and download it for your blog. read more...

add a comment |category: |Views: 242

tags: another