Jason Miesionczek

2,774
Reputation
291 views

Registered User

Name Jason Miesionczek
Member for 1 year
Seen 38 mins ago
Website
Location Danbury, CT
Age 28
I am a C# dev at my day job, but in my spare time i like to play around with all sorts of different technologies:
  • Ruby (and Rails)
  • Python
  • F#
  • XNA
  • 3D modeling and animation
  • Flash/Flex
  • Silverlight
Nov
30
awarded  Tumbleweed
Nov
20
revised Best Framework in PHP
edited tags
Nov
20
answered See if any application has a DLL from the GAC loaded
Nov
20
comment How to give alert message without using javascript
are you trying to not use javascript at all, or just not use the alert box?
Nov
16
comment Can I run jrunscript from a JRE
Your answer makes no mention of Javascript...
Nov
15
awarded  Taxonomist
Oct
13
comment Using VB.NET to log into Windows Live Mail?
for your example, you would replace Info.Username with textbox1.Text
Oct
13
comment Using VB.NET to log into Windows Live Mail?
you would do something like this: browser.Document.GetElementById("username").SetAttribute("value", Info.Username); where browser is your WebBrowser control, and "username" is the ID of the input element on the page. And you would do the same thing for the password box. And then to click the login button, something like this would work: browser.Document.GetElementsById("login").InvokeMember("click"); It will get a little trickier if the login button doesn't have an ID, but its still possible to figure out how to find it using the other methods in the Document object.
Oct
13
answered Using VB.NET to log into Windows Live Mail?
Oct
12
comment What are five things you hate about your favorite language?
#2 == Wordpress
Oct
11
comment Best method for Website Automation?
In light of your updated question, i still recommend the HTML Agility Pack to do what you're looking to accomplish.
Oct
11
answered Best method for Website Automation?
Oct
8
comment Getting Service Tag from Dell Machine using .net?
From what i can tell, Win32_SsytemEnclosure is based on the physical box that the computer is built in, whereas Win32_BIOS is the chip on the motherboard. My theory is if you move a motherboard from its original case to another case, then the service tags you get from BIOS and SystemEnclosure might be different, but i have not tested this. It's probably safe to assume that the serial number from either class would be accurate.
Oct
8
accepted Getting Service Tag from Dell Machine using .net?
Oct
8
comment Getting Service Tag from Dell Machine using .net?
He is already doing that. None of the values you are querying relate to the service tag of the machine.
Oct
8
answered Getting Service Tag from Dell Machine using .net?
Sep
30
accepted .NET RIA Services: “Associated Metadata contains the following unknown properties or fields”
Sep
30
accepted ASP.NET MVC + Silverlight + Forms Authentication
Sep
29
comment How to design a report request from client machines to be run on an available server
it would also work just as well with a normal text based column, its just XML text that would be deserialized by the report server
Sep
29
accepted How to design a report request from client machines to be run on an available server
Sep
29
comment How to design a report request from client machines to be run on an available server
if you are using SQL Server, there is a data type called XML, which if you are using VB.NET you should be able to encapsulate your report parameters into an object and then serialize it and pop it into that column
Sep
29
answered How to design a report request from client machines to be run on an available server
Sep
29
accepted how to organize the code similar to #region/#endregion in .NET?
Sep
29
answered how to organize the code similar to #region/#endregion in .NET?
Sep
20
awarded  Yearling
Sep
8
answered .NET RIA Services: “Associated Metadata contains the following unknown properties or fields”
Sep
8
revised .NET RIA Services: “Associated Metadata contains the following unknown properties or fields”
cleaned up code formatting
Sep
8
asked .NET RIA Services: “Associated Metadata contains the following unknown properties or fields”
Sep
8
answered Flash: How to change a text fields’ textFormat on the fly/per action in AS3?
Sep
7
comment Silverlight vs Flex
Silverlight 3 comes with the "out of browser" feature where your silverlight app can be installed to the desktop just like an AIR app. There are APIs for detecting when the app is running in the browser or not, when there is an internet connection present, and even an API for updating the app automatically.
Sep
3
answered ASP.NET MVC + Silverlight + Forms Authentication
Sep
3
revised ASP.NET MVC + Silverlight + Forms Authentication
added 1845 characters in body
Sep
3
revised ASP.NET MVC + Silverlight + Forms Authentication
added 491 characters in body
Sep
3
asked ASP.NET MVC + Silverlight + Forms Authentication
Sep
2
awarded  Popular Question
Aug
25
comment Preventing ajax-jquery loaded external file from caching in IE
What if he didn't have access to the contents of that file?
Aug
25
comment Preventing ajax-jquery loaded external file from caching in IE
beat me to it :)
Aug
24
answered what happens if more than one thread tries to access singleton object
Aug
24
comment Prevent form from freezing
This is only useful if you won't be downloading the same photo(s) over and over again, in that case, saving them to disk and checking if they exist before downloading them again would be more efficient.
Aug
24
comment Prevent form from freezing
Doesn't clutter your disk with files you don't need. Especially if the files are large.
Aug
24
comment Prevent form from freezing
Yes, the WebClient has a DownloadProgressChanged, and DownloadCompleted events
Aug
24
answered Prevent form from freezing
Aug
24
answered Is it possible to debug .NET Class Library Methods as well?
Aug
24
comment Key in dictionary
Show us the code you are using to update the record(s)
Aug
22
comment Techniques for logging into websites programmatically
Do you have any examples of how i can use HtmlAgilityPack to interact with the website like you did? i tried searching around but i couldnt come up with anything.
Aug
21
comment Where is the bug in this Console.WriteLine statement?
For readabilities sake i would re-write those nested ?: operations, or a least break them up onto separate lines.
Aug
20
accepted Do linq2sql expressions always return iquerable?
Aug
20
answered Do linq2sql expressions always return iquerable?
Aug
20
comment Techniques for logging into websites programmatically
yes i am using the PhotobucketNet API from here: assembla.com/wiki/show/…
Aug
20
comment Techniques for logging into websites programmatically
This is the method i went with, but i used a more direct approach to get the elements i was interested in.