rslite

3,920
reputation
137 views

Registered User

name rslite
member for 1 year
seen Nov 28 at 18:50
website
http://-
location RO
age 35
I program in C# for living. Trying to learn as much as possible about various programming aspects.
Dec
6
awarded  Mortarboard
Nov
17
awarded  Notable Question
Nov
3
answered Hints for testing a web application which had a DB migration from SQL 2000 to 2005.
Oct
29
comment how to interact with mainframe from asp.net web pages (c#)
You need to be more specific to get a meaningful answer. First of all how can you communicate with the mainframe? What protocol? Basically any protocol should be doable from C#, but you might need to implement the required interface. This interface can also take care of the authentication.
Oct
28
accepted Django - Send Output Continually
Oct
28
accepted Convert a subnet mask into binary (octets) in vb.net
Oct
26
answered Django - Send Output Continually
Oct
26
comment Django - Send Output Continually
This is the 'correct' method, but it takes time, and I just need a quick-n-dirty solution for now. Turns out one of the links that you provided contained the answer that I needed.
Oct
26
comment How do you do something after you render the view? (Django)
When there's a finally clause the return out of the function only happens after the code in finally is executed, so this won't work as intended.
Oct
26
answered Convert a subnet mask into binary (octets) in vb.net
Oct
26
comment Convert a subnet mask into binary (octets) in vb.net
Do you convert each byte separately and concatenate the results?
Oct
26
asked Django - Send Output Continually
Oct
20
answered Call php from javascript and return an array from php to Javascript function
Oct
20
comment CSS not working with PHP script:
Same question as Dominic, then if that is OK check with Firefox's FireBug addon if the CSS is actually loaded and applied to the elements.
Oct
20
answered Get Namespace, classname from a dll in C# 2.0
Oct
19
answered [C#] Convert string to double with 2 digit after decimal separator
Oct
19
answered Mixing Vb.net with C#
Oct
16
accepted Do UPDATE in SQL using a JOIN
Oct
16
answered Do UPDATE in SQL using a JOIN
Oct
15
comment Logic in stored procedure
Yep, you're right. I corrected the code example. I just copied the pseudo-code and missed that.
Oct
15
revised Logic in stored procedure
added 39 characters in body
Oct
15
answered String or binary data would be truncated. The statement has been terminated.
Oct
15
answered Logic in stored procedure
Oct
15
awarded  Enlightened
Oct
15
awarded  Nice Answer
Oct
15
accepted What is the official name of a class that must be inherited from to instantiate?
Oct
15
answered What is the official name of a class that must be inherited from to instantiate?
Oct
15
answered xpath find specific link in page
Oct
15
revised MySQL: Table Layout for perfomance (Multiple Query vs One single big query)
added 1102 characters in body
Oct
15
answered MySQL: Table Layout for perfomance (Multiple Query vs One single big query)
Oct
15
comment C# OnPaint mousemove high cpu usage
I just tested with a simple project to be sure and the Paint is not called by mouse move unless I call Invalidate in OnMouseMove (as others have mentioned here). Are you sure there isn't some other condition in code that makes the calls to invalidate when they shouldn't be called? Try to add some logging code to log the calls to invalidate and mouse move and see if they are called as you intend to.
Oct
15
answered C# OnPaint mousemove high cpu usage
Oct
15
revised Does int.Parse uses boxing/unboxing or type casting in C# ?
added 399 characters in body
Oct
15
answered Does int.Parse uses boxing/unboxing or type casting in C# ?
Oct
15
comment If I only sanitize GET and POST data, will I be safe from injection?
Also sanitizing is not just for SQL, you need to have HTML and JS in mind if you output it on a page.
Oct
14
comment How to put viewdata attribute in to property of asp tag
OK, I answered this more from an ASP.NET point of view. I don't have experience with MVC, but I thought it would work in the same way. Can you replace that with a property and see if it can be read in the page?
Oct
14
accepted Is it possible to restart a PC using “pure” .NET and *without* using p/invoke?
Oct
14
revised How to put viewdata attribute in to property of asp tag
added 109 characters in body
Oct
14
answered How to put viewdata attribute in to property of asp tag
Oct
14
answered Is it possible to restart a PC using “pure” .NET and *without* using p/invoke?
Oct
14
comment ASP.Net aspx properties persisted
It's not an actual DataTable, it's a string (probably with the table name), which is why I recommended to change the name.
Oct
14
answered ASP.Net aspx properties persisted
Oct
14
revised C: Looping without using looping statements or recursion
added 75 characters in body
Oct
14
answered C: Looping without using looping statements or recursion
Oct
13
comment How can I write portable Windows applications?
Well, what do you do with C# without the .NET Framework? The main point is to provide options for the OP and not nitpick.
Oct
13
comment Efficient way to read index file in .NET
How are the words stored in the dictionary?
Oct
13
accepted How to logout from my winApplication in .NET
Oct
13
answered Efficient way to read index file in .NET
Oct
13
comment How to logout from my winApplication in .NET
Yes, something like that and the main form will be closed when the user logs out
Oct
13
answered How to logout from my winApplication in .NET