Bognit

Stories submitted by Bognit

Open Tabs to the Right in Visual Studio 2010(www.codersbarn.com)

submitted by BognitBognit(2110) 28 days, 9 hours ago

It really annoys me that files are opened in the tab bar in Visual Studio by default to the left. read more...

add a comment |category: |Views: 3

tags: another

Calling Console Application from Web Form(codersbarn.com)

submitted by BognitBognit(2110) 3 months ago

To call the console app from the Web form code-behind we use the Process.Start method. We can avail of the ProcessStartInfo class to set up any properties in advance of making the process call. read more...

add a comment |category: |Views: 4

tags: another

Responsive Web Design - Stop and Think(www.codersbarn.com)

submitted by BognitBognit(2110) 5 months, 14 days ago

This article by Ethan Marcotte on Responsive Web Design has been widely touted as the designer's panacea for all things mobile. Other leading designers such as Jeffrey Zeldman and Andy Clarke have all jumped on the band wagon. Considering the amount of influence these guys have on young designers, it saddens me that leading designers, of all people, would sacrifice their art on the altar of a quick fix. read more...

add a comment |category: |Views: 3

tags: another

Chronology of the ASP.NET Security Alert(www.codersbarn.com)

submitted by BognitBognit(2110) 1 year, 4 months ago

Earlier this week, on the lead up to the ekoparty Security Conference in Argentina, a pair of security researchers announced that they would demonstrate an attack to exploit the way that ASP.NET handles encrypted session cookies. read more...

1 comment |category: |Views: 57

tags: another

Five rules for writing effective UI tests(www.lostechies.com)

submitted by BognitBognit(2110) 1 year, 4 months ago

Effective, maintainable UI tests are definitely possible. They can be written in such a way that it doesn’t require lots of babysitting or dedicated personnel to maintain. They can even be automated to run after every commit. They can provide value, catch bugs, and expose all those unintended consequences from changes that complex applications tend to have. read more...

add a comment |category: |Views: 8

tags: another

Google Cannot Solve your Coding Problems(www.codersbarn.com)

submitted by BognitBognit(2110) 1 year, 4 months ago

I imagine 80/90% of programmers, myself included, are guilty of this everday form of insanity. read more...

6 comments |category: |Views: 583

tags: another

7 Freely available E-Books/Guides I found essential for .NET Programme(amazedsaint.blogspot.com)

submitted by BognitBognit(2110) 1 year, 4 months ago

Freely available E-Books/Guides I found essential for .NET Programme read more...

3 comments |category: |Views: 914

tags: another

Configuring N2 CMS for ASP.NET Web Forms Site(www.codersbarn.com)

submitted by BognitBognit(2110) 1 year, 7 months ago

I'm going to outline the basic steps required to create a Web Forms version of the N2 CMS and how to import the downloaded zip file as a package in IIS7. The Web Deployment Tool gives us the ability to package our Web application or Web site as well as an associated database. read more...

add a comment |category: |Views: 35

tags: another

The Future SEO Concerns of a Web Devigner(www.codersbarn.com)

submitted by BognitBognit(2110) 2 years ago

Google had no choice but to find some way to reduce the amount of spam clogging its data centers and apply some qualititative heuristic to measure the relevance of sites. So, they recently re-wrote their entire algorithm (codename "Caffeine") which caused no end of panic among the SEO heads! read more...

1 comment |category: |Views: 10

tags: another

Twitter - Saving your Tweets(codersbarn.com)

submitted by BognitBognit(2110) 2 years, 1 month ago

Recently, I passed the 700 tweet mark and decided to archive what I had. But how? read more...

add a comment |category: |Views: 7

tags: another

Install SharePoint 2010 on Windows 2008(codersbarn.com)

submitted by BognitBognit(2110) 2 years, 2 months ago

I want to focus in on the gotchas that can make this an unpleasant experience for non-admin devs like myself. read more...

add a comment |category: |Views: 23

tags: another

DropDownList, DataBinding and RequiredValidator(codersbarn.com)

submitted by BognitBognit(2110) 2 years, 3 months ago

I recently had a DropDownList being pre-populated from a database. I also wanted to insert "Select" at the top of the list and make it a required field. Googling yielded much misinformation for what turned out to be pretty simple to solve in the end. read more...

add a comment |category: |Views: 19

tags: another

The Two Ways One Writes JavaScript Code(theruntime.com)

submitted by BognitBognit(2110) 2 years, 5 months ago

Good take! read more...

add a comment |category: |Views: 13

tags: another

Input String was not in a Correct Format(codersbarn.com)

submitted by BognitBognit(2110) 2 years, 5 months ago

If the user is entering integer or decimal values via texboxes, which is usually the case, then you have to expect either no data or a string of possibly mal-formed data. read more...

add a comment |category: |Views: 38

tags: another

Fix for TreeView Jumping in Firefox(codersbarn.com)

submitted by BognitBognit(2110) 2 years, 6 months ago

For some time I have been having problems using the ASP.NET TreeView control in Sitemaps; every time I would hover over one of the parent nodes it would jump up and down. read more...

add a comment |category: |Views: 5

tags: another

Covariance, Contravariance and Invariance in C# 4.0(codersbarn.com)

submitted by BognitBognit(2110) 2 years, 8 months ago

Generally, C# supports covariant parameters and contravariant return types. There has always been support for covariance and contravariance in C# - C# 4.0 will just ensure that generic delegates and interfaces will also comply. read more...

add a comment |category: |Views: 34

tags: another