391 reputation
28
bio website
location
age
visits member for 4 years, 4 months
seen 1 hour ago
stats profile views 34

.NET/C# Programmer


Apr
29
comment ASP.NET WebForms Dropdown JQuery setting selectedIndex not reflected in postback
I just found out that disabled controls aren't included in the form post body and confirmed this in fiddler. So this explains why ALL is not set for DDlProductType because I am disabling this control as well. But what's odd is that there are other dropdownlist controls that are disabled as well which are getting updated, yet the their selected values are not in the post body. Does anyone know why this is happening?
Apr
29
comment ASP.NET WebForms Dropdown JQuery setting selectedIndex not reflected in postback
ALL is in the list on intial load. I am only dynamically adding/removing ALL depending on some conditions.
Apr
29
asked ASP.NET WebForms Dropdown JQuery setting selectedIndex not reflected in postback
Jan
3
comment Chrome Image Preloading does not work on first image load
Some more info: Tested in IE9 and Opera and the images aren't re-requested. In Chrome, the issue seems to be intermittent. On a newly opened tab, the images are re-requested. But opening a new tab on the same window, the images aren't re-requested. Clicking refresh button on the new tab again re-requests the images on hover and mouse out.
Jan
3
comment Chrome Image Preloading does not work on first image load
To add some context, the page I am creating is a SharePoint WebPart on a custom page. It appears that the image response headers are playing part in the way Chrome behaves.
Jan
3
comment Chrome Image Preloading does not work on first image load
This is odd. I just tried it on Chrome on my home PC and it's working just fine (images are not being re-requested from the server). Can anybody shed light on this?
Jan
3
revised Chrome Image Preloading does not work on first image load
added 1432 characters in body
Jan
3
comment Chrome Image Preloading does not work on first image load
It is displaying the image as the css class of the anchor is initially set to "imageOut".
Jan
3
asked Chrome Image Preloading does not work on first image load
Dec
20
awarded  Yearling
Dec
19
awarded  Tumbleweed
Dec
18
comment Accessing through this within a class
this improves readability, but there is no difference.
Dec
12
asked SharePoint Survey Custom View/Edit/Delete Permission for Custom Group
Dec
11
comment How to cast object at runtime, while getting type information at runtime
Check if this helps you: stackoverflow.com/questions/312858/…
Dec
11
comment c# Project order processing application
why not use a database?
Dec
11
comment how can I get which class has been passed to method
@kurasa What's the need for having one property for each vehicle type?
Dec
10
comment which design pattern to use for a draw application
@user1890239 This is good advice. Draw class does not need to know details about Surface. In fact, Surface can be design to be able to draw itself (derive from a IDrawable class/inherit from AbstractDrawObject and implement a Draw method). Same goes for frame.
Dec
10
comment which design pattern to use for a draw application
I agree with the others. You don't necessarily need design patterns for your solution, just sound OO design principles.
Dec
10
comment which design pattern to use for a draw application
"My problem is that if the length value given by the user is larger than max" - what is max? I don't get why you have to create multiple surfaces.
Dec
10
comment Cannot manage to pass a List to another method
\@Etienne As cpt.jazz has said, you can pass in weights to a new Neuron constructor and leave saving and loading of weights to Network class. Therefore, during training, you save, you can skip and load otherwise.