6
votes
2answers
220 views

Is this user input field secure?

I'm pretty new to asp and c# and I have a couple of concerns with the security of the code I have written (shown below). Basically all it does is allow you to enter a quantity before you add the item ...
2
votes
2answers
160 views

Using IDisposable to stripe a table

What are your thoughts on using an IDisposable to stripe an HTML table like so. It's a blatant abuse of IDisposable but this allows you to use the counter in a using(){} block which gives you a clear ...