| bio | website | mikesmithdev.com |
|---|---|---|
| location | Texas | |
| age | 33 | |
| visits | member for | 6 months |
| seen | 3 hours ago | |
| stats | profile views | 299 |
Webmaster, analyst, random blogger.
|
May 13 |
comment |
Save a Session to a Label then save back to a database This looks remarkably similar to your last question, which showed how to set a session value to a label... |
|
May 13 |
comment |
Save a Session to a Label then save back to a database Why are you setting a session variable value to a label (which is used for display, not maintaining data between postbacks) and then using the label value for your update, instead of just using the Session variable itself? Also, is the customerID for the currently logged in user? |
|
May 10 |
comment |
Check to see if image is transparent Use ImageResizer. I started using this recently and I'll never write a resizer/cropper function again (still in the process of phasing out my old functions tho). It's awesome. |
|
May 9 |
comment |
ASP.NET: Div event click fail @Fakedo0r if you are changing your code, you need to update your question. My example wasn't to say that you should replace your div with a button, it was to show that OnClick for an ASP control is different than the onclick of your div. |
|
May 9 |
revised |
ASP.NET: Div event click fail Added ASP.NET control example |
|
May 9 |
answered | ASP.NET: Div event click fail |
|
May 9 |
comment |
I am trying to minifying javascript files using mvc4 bundle feature They are only ignored in debug mode. |
|
May 9 |
comment |
I am trying to minifying javascript files using mvc4 bundle feature @PrinceChopra that's because any '.min' file is not included in debug mode. You either need to have the non minified version, or just rename the minified version to remove the '.min'. |
|
May 9 |
comment |
HttpContext.Current.Request.ServerVariables[“REMOTE_ADDR”] Security Why would someone want to process a payment through your system? Either way, if you want ideas for payment security, you need to start with PCI Compliance. |
|
May 9 |
comment |
IE problems with JCrop This got it working for me in IE, but broke Safari. I ended up having to detect browser and use API method (similar to above, the only difference is I moved all of the options to a separate function) for IE and the normal way for all other browsers... seems to be working consistently across all browsers. |
|
May 8 |
answered | Initial SelectedValue in DropDownList not posting back when re-selected |
|
May 8 |
comment |
Initial SelectedValue in DropDownList not posting back when re-selected In the code-behind, are you selecting the second option even on PostBack? |
|
May 8 |
answered | MVC 4 @Html.DropDownListFor() not passing model values to dropdown |
|
May 8 |
comment |
How to get modified Image (img) Source (src) server-side? "When I try to get the modified value on the server-side"... when? On a post-back? |
|
May 7 |
comment |
Install font to client machine using ASP.net possible duplicate of Install Fonts to client machine using asp.net c# |
|
May 7 |
revised |
ASP case statement in .cs.aspx Fixed code formatting |
|
May 6 |
comment |
Adding to a sql integer column using C# Helping him solve his problem while leaving him open to SQL injection is not helpful at all, really. He's already catching all exceptions and could have found out why it is failing by looking at it, as we already know there is an exception. |
|
May 6 |
comment |
Adding to a sql integer column using C# I didn't downvote, but I fail to see how it has better error handling. It also doesn't use parameters, which is what he needs. And a using statement would be better... (or really a new way to interface with his db :/). And why the execute scalar to update. |
|
May 6 |
comment |
There is an error: access is denied @Ponce there would be a location element in the web.config. Or possibly in a web.config in the Scripts folder itself. |
|
May 6 |
comment |
Where does javascript store variables and how long are they kept? @Kiarash I'm assuming this isn't a simple postback scenario. |