Tagged Questions

5
votes
6answers
238 views

Why does resharper say ‘Catch clause with single ‘throw’ statement is redundant’?

I thought throwing an exception is good practice to let it bubble back up to the UI or somewhere where you log the exception and notify the user about it. Why does resharper say i …
2
votes
3answers
283 views

jQuery & ASP.Net Resources & Gotchas

What are some good jQuery Resources along with some gotchas when using it with ASP.Net?
1
vote
3answers
99 views

Disable winforms refresh

Every time I change the enable disable property of the controls on my winform it repaints the whole form. I want to avoid the redundant repaints by only repainting when i have upda …
1
vote
3answers
254 views

Hibernate: Mapping One-way Redundant Columns

In my schema there are a few redundant columns used to speed up report queries. For example, the purchase total of a sale is saved in the "purchase_total" column of the "sale" tab …
1
vote
7answers
182 views

Is there any downside to redundant qualifiers? Any benefit?

For example, referencing something as System.Data.Datagrid as opposed to just Datagrid. Please provide examples and explanation. Thanks.
0
votes
2answers
46 views

ARP protocol : is ARP source hardware address redundant? (already contained in ethernet header)

Hi, I'm working on a network security project and I noticed something that I can't explain: Why do we need a source hardware address field in arp? Isn't it already contained in …
0
votes
0answers
88 views

ASP.Net Gridview: get rid of redundant controls in templates

In a gridview I want to allow editing and inserting data. The Insert row should be in the footer row. But that row is not existing if the datasource is empty. So I have to create a …