User Salamander2007 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T16:01:15Z http://stackoverflow.com/feeds/user/10629 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/660743/what-orm-would-you-recommend/1872653#1872653 0 Answer by Salamander2007 for What ORM would you recommend? Salamander2007 2009-12-09T09:31:24Z 2009-12-09T09:31:24Z <p><a href="http://www.subsonicproject.com/" rel="nofollow">SubSonic</a>. It's free and able to do all the things you've described.</p> http://stackoverflow.com/questions/1872595/how-bad-are-usernames-and-passwords-stored-in-hidden-form-fields/1872623#1872623 0 Answer by Salamander2007 for How bad are usernames and passwords stored in hidden form fields? Salamander2007 2009-12-09T09:26:05Z 2009-12-09T09:26:05Z <p>Wiretapping, especially if the transport layer is not encrypted</p> http://stackoverflow.com/questions/1787130/connecting-to-mysql-from-a-c-application/1787204#1787204 1 Answer by Salamander2007 for Connecting to MYSQL from a c# application Salamander2007 2009-11-24T01:14:27Z 2009-11-24T01:20:50Z <p>No, you have to also change this line</p> <pre><code>var command = new SqlCommand(); </code></pre> <p>to</p> <pre><code>var command = new con.CreateCommand(); </code></pre> <p>and of course you have to change any specific T-SQL and MSSQL features to MySQL. Date and time function, stored procedure, and parameter binding(? instead of @) are a few things that you need to closely check.</p> http://stackoverflow.com/questions/1752494/detect-if-any-key-is-pressed-in-c-not-a-b-but-any/1752609#1752609 0 Answer by Salamander2007 for Detect if any key is pressed in C# (not A, B, but any) Salamander2007 2009-11-17T23:28:33Z 2009-11-17T23:28:33Z <p>See this question : <a href="http://stackoverflow.com/questions/347724/how-can-i-capture-keydown-event-on-a-wpf-page-or-usercontrol-object">Capture KeyDown Event in WPF</a></p> http://stackoverflow.com/questions/1640970/should-i-start-learning-classic-vb-asp-or-net/1641007#1641007 1 Answer by Salamander2007 for Should I start learning classic VB/ASP or .NET? Salamander2007 2009-10-29T00:37:12Z 2009-10-29T00:37:12Z <p>I'm going to go on a different route and say Learn VB6 and ASP Classic first and then learn ASP.NET. Learning ASP Classic first will teach you all about HTTP, HTML, and session management. You will discover what spaghetti code looks like, and you will learn how hard it is to display tabular data. With paging. Learning ASP Classic first will make easier for you to relate to PHP.</p> <p>After that, learn ASP.NET and you will appreciate all the good thing it offers. I'd say that it would probably takes 1 month of small project to get yourself comfortable with ASP Classic, and another one or maybe two month to get a good grip on ASP.NET fundamentals.</p> http://stackoverflow.com/questions/361717/select-current-element-in-jquery 0 Select current element in jQuery Salamander2007 2008-12-12T02:33:18Z 2009-09-17T11:51:12Z <p>I have HTML code like this :</p> <pre><code>&lt;div&gt; &lt;a&gt;Link A1&lt;/a&gt; &lt;a&gt;Link A2&lt;/a&gt; &lt;a&gt;Link A3&lt;/a&gt; &lt;/div&gt; &lt;div&gt; &lt;a&gt;Link B1&lt;/a&gt; &lt;a&gt;Link B2&lt;/a&gt; &lt;a&gt;Link B3&lt;/a&gt; &lt;/div&gt; </code></pre> <p>When user click link from above HTML, I want to get jquery object of corresponding <code>&lt;a&gt;</code> element, and then manipulating it's sibling. I can't think of any way other then creating ID for each <code>&lt;a&gt;</code> element, and passing that ID to onclick event handler. I really don't want to use ID. </p> <p>Any suggestion? I'm a newbie in jquery</p> http://stackoverflow.com/questions/1403762/oracleclient-to-devart-dotconnect-for-oracle/1403858#1403858 0 Answer by Salamander2007 for OracleClient to devart dotConnect for Oracle Salamander2007 2009-09-10T07:39:00Z 2009-09-10T07:39:00Z <p>Granted that I've only been using DevArt dotConnect for only about a month, and never do any provider migration, but from what I see, it's going to be a trivial task. </p> http://stackoverflow.com/questions/1134993/control-another-application-using-c 2 Control another application using C# Salamander2007 2009-07-16T01:29:25Z 2009-08-18T20:20:59Z <p>I need to control other application by simulating mouse movement and keyboard input. How do I accomplish this in C#? Is it even possible? </p> http://stackoverflow.com/questions/1236997/positioning-labels-and-inputs-with-css/1237036#1237036 0 Answer by Salamander2007 for Positioning Labels And Inputs With CSS Salamander2007 2009-08-06T04:52:57Z 2009-08-06T04:52:57Z <p>This works on my machine, tested on IE8 and Firefox (the only browser I care about)</p> <pre><code>label { clear:left; float:left; margin-right:10px; text-align:right; width:100px; border:solid 1px; } input { float:left; border:solid 1px; } div { float:left; border:solid 1px; } </code></pre> <p>And the HTML code : </p> <pre><code> &lt;label&gt;x&lt;/label&gt;&lt;input type="text" /&gt; &lt;label&gt;x&lt;/label&gt;&lt;input type="text" /&gt; &lt;label&gt;x&lt;/label&gt;&lt;input type="text" /&gt; &lt;label&gt;x&lt;/label&gt;&lt;input type="text" /&gt; &lt;label&gt;x&lt;/label&gt; &lt;div&gt; &lt;label&gt;y&lt;/label&gt;&lt;input type="text" /&gt; &lt;label&gt;y&lt;/label&gt;&lt;input type="text" /&gt; &lt;label&gt;y&lt;/label&gt;&lt;input type="text" /&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1210155/session-state-not-retained-over-calls-to-a-page-method/1210198#1210198 0 Answer by Salamander2007 for Session State not Retained over calls to a Page Method Salamander2007 2009-07-31T01:06:42Z 2009-07-31T01:06:42Z <p>A few things to check :</p> <p>Are you using WebFarm configuration? there might be a problem when using session in WebFarm configuration.</p> <p>Have you check your network traffic using tools like Fiddler or FireBug? Is ASP.NET Auth cookie sent during AJAX call?</p> <p>Can you confirm your session var is valid?</p> http://stackoverflow.com/questions/1128844/returning-values-inside-a-js-function/1129088#1129088 5 Answer by Salamander2007 for Returning values inside a JS function Salamander2007 2009-07-15T02:22:54Z 2009-07-15T02:22:54Z <p>Change your function name to something like '<strong>getValue</strong>'. This code works on my machine :P</p> <pre><code>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; &lt;head&gt; &lt;script type="text/javascript"&gt; function getvalue(id) {return document.getElementById(id).value;} &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;input type="text" id="Text1" /&gt; &lt;input type="button" onclick="alert(getvalue('Text1'))" /&gt; &lt;br /&gt; &lt;input type="text" id="Text2" /&gt; &lt;input type="button" onclick="alert(getvalue('Text2'))" /&gt; &lt;br /&gt; &lt;input type="text" id="Text3" /&gt; &lt;input type="button" onclick="alert(getvalue('Text3'))" /&gt; &lt;br /&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1029926/jquery-selector/1029949#1029949 1 Answer by Salamander2007 for JQuery selector Salamander2007 2009-06-22T23:45:28Z 2009-06-22T23:45:28Z <p>You're using a descendant operator, which will search all descendants. I imagine that jQuery uses depth first search algorithm in searching the DOM tree. That explains why you get the longest one first. As for why jQuery only returns one node, you're using ID selector, which is supposed to be unique in all DOM node. I would expect jQuery to return after the first match, as there's no point in traversing the rest of the tree.</p> http://stackoverflow.com/questions/142756/automatically-set-list-item-permission-after-new-item-is-created 0 Automatically set list item permission, after new item is created Salamander2007 2008-09-27T02:08:03Z 2009-05-26T06:44:04Z <p>We have a SharePoint Team Site (WSS 3.0 not MOSS), that includes Tasks list to records every tasks related to a project. Here's the scenario.</p> <p>Users :</p> <ul> <li>List item</li> <li>Supervisor1</li> <li>TeamMember1</li> <li>TeamMember2</li> <li>TeamMember3</li> </ul> <p>How do we set the permission settings so that </p> <ul> <li>Every users (Supervisor and team members) can see any tasks.</li> <li>Supervisors can edit any tasks</li> <li>Team members can only edit their own tasks (tasks that were assigned to them, or created by them)</li> </ul> <p>I was unable to achieve the intended results using standard WSS permission settings, without resorting to manual permission settings on each item in the list. I'm imagining that the automatic solution has to be accomplish using some sort of workflow or trigger.</p> http://stackoverflow.com/questions/343299/bulk-insert-to-oracle-using-net 3 Bulk Insert to Oracle using .NET Salamander2007 2008-12-05T09:24:59Z 2009-04-28T12:32:31Z <p>What is the fastest way to do Bulk insert to Oracle using .NET? I need to transfer about 160K records using .NET to Oracle. Currently, I'm using insert statement and execute it 160K times.It takes about 25 minutes to complete. The source data is stored in a DataTable, as a result of query from another database (MySQL), </p> <p>Is there any better way to do this?</p> <p><strong>EDIT</strong> : I'm currently using System.Data.OracleClient, but willing to accept solutions using another provider (ODP.NET, DevArt, etc..)</p> http://stackoverflow.com/questions/257806/display-active-session-in-sql-server-2005 1 Display active session in SQL Server 2005 Salamander2007 2008-11-03T02:31:08Z 2009-04-23T16:56:57Z <p>In Oracle, there's a view called V$SESSION that lists all active sessions in database. Is there any similar view in SQL Server 2005?</p> http://stackoverflow.com/questions/367786/prevent-caching-of-ajax-call 4 Prevent caching of AJAX call Salamander2007 2008-12-15T08:44:11Z 2009-04-20T18:13:43Z <p>It looks like that if I load dynamic content using $.get(), the result is cached in browser. Adding some random string in QueryString seem to solve this issue (I use new Date().toString()), but this feels like a hack. </p> <p>Is there any other way to achieve this? Or, if unique string is the only way to achieve this, any suggestions other than new Date() ?</p> http://stackoverflow.com/questions/587120/good-asp-net-excel-like-grid-control/683830#683830 2 Answer by Salamander2007 for Good ASP.NET excel-like Grid control? Salamander2007 2009-03-25T22:49:33Z 2009-03-25T22:49:33Z <p>How about <a href="http://www.fpoint.com/netproducts/spreadweb/spread.aspx" rel="nofollow">FarPoint Spread</a>? I'm in the middle on evaluating FarPoint Spread for ASP.NET, and so far I've been happy with the result. </p> http://stackoverflow.com/questions/637374/asp-net-datasheet-component 0 ASP.NET Datasheet Component Salamander2007 2009-03-12T04:32:53Z 2009-03-12T04:32:53Z <p>I need data editing capabilities like the one in Microsoft SharePoint Datasheet View (user can add/edit records excel-like, support copy&amp;paste operations). I understand that SharePoint use ActiveX to do this, however :</p> <ul> <li>Is there any commercial/free component that I can use?</li> <li>Is there anyway I can re-use SharePoint ActiveX on my project?</li> </ul> http://stackoverflow.com/questions/212111/convert-wpf-application-to-silverlight 5 Convert WPF Application to SilverLight Salamander2007 2008-10-17T13:29:13Z 2009-01-22T16:53:00Z <p>Is it possible to convert an existing WPF Application to SilverLight automatically/with minimal effort?</p> http://stackoverflow.com/questions/371079/jquery-ui-dialog-and-dopostback/467742#467742 0 Answer by Salamander2007 for jquery UI Dialog and __DoPostback Salamander2007 2009-01-22T01:12:31Z 2009-01-22T01:12:31Z <p>Is it a read-only or disabled or hidden textbox? ASP.NET doesn't postback the value if the textbox is readonly, disabed, or hidden.</p> http://stackoverflow.com/questions/317777/synchronisable-crm-system/441566#441566 0 Answer by Salamander2007 for Synchronisable CRM System Salamander2007 2009-01-14T01:20:21Z 2009-01-14T01:20:21Z <p>Here's my strategy in when I rolls my own synch solution in the past.</p> <ol> <li>Limiting the number of change operation that can happened when the system is offline. </li> <li>Avoid using auto increment integer as primary key as this will leads to a nasty problem. In the past, I've assigned every disconnected client with some unique ID, and uses that ID in conjunction to auto generated number to form a nice and readable primary key (Like XXX-YYYYYYYY). This is easy to do because creating a sequential number is trivial in non concurrent environment.</li> <li>Keep a transaction log, such as every DML operation that you do during offline can be "replayed" to the server. You can optimized around this log later when your basic synchronization needs has been fulfilled.</li> <li>You have to make a decision on how to prepare your client application before they go offline. A typical solution is forcing your user to push a button to trigger the application to enter "offline mode". I found this solution to be quite problematic, especially when your user is careless and forgetfull. A quick slap in the head from their managers usually suffice on the early stages, but you can opt to implement more intelligen intelligent solution later.</li> <li>Build my solution from the simplest operation first, and then work my way up to a more complex scenario. (Single table single record operation, multiple tables multiple records operations, series of operation that must acts as a transaction)</li> <li>Make a conflict resolutions scenario. Be sure the scenario is approved by your users. </li> </ol> <p>Needless to say, it's a painful journey. If you can outsource the pain to another party (like purchasing available CRM solutions), that will be the best.</p> http://stackoverflow.com/questions/430879/file-locking-read-write-in-asp-net-application 0 File Locking (Read/Write) in ASP.NET Application Salamander2007 2009-01-10T11:46:55Z 2009-01-12T02:41:11Z <p>I have two ASP.NET web application. One is responsible for processing some info and <strong>writing to a log file</strong>, and the other application is reponsible for <strong>reading the log</strong> file and displays the information based on user request.</p> <p>Here's my code for the Writer</p> <pre><code>public static void WriteLog(String PathToLogFile, String Message) { Mutex FileLock = new Mutex(false, "LogFileMutex"); try { FileLock.WaitOne(); using (StreamWriter sw = File.AppendText(FilePath)) { sw.WriteLine(Message); sw.Close(); } } catch (Exception ex) { LogUtil.WriteToSystemLog(ex); } finally { FileLock.ReleaseMutex(); } } </code></pre> <p>And here's my code for the Reader :</p> <pre><code>private String ReadLog(String PathToLogFile) { FileStream fs = new FileStream( PathToLogFile, FileMode.Open, FileAccess.Read, FileShare.ReadWrite); StreamReader Reader = new StreamReader(fs); return Reader.ReadToEnd(); } </code></pre> <p>My question, is the above code enough to prevent locking in a web garden environemnt? </p> <p><strong>EDIT 1 :</strong> Dirty read is okay. <strong>EDIT 2 :</strong> Creating Mutex with new Mutex(false, "LogFileMutex"), closing StreamWriter</p> http://stackoverflow.com/questions/409101/if-im-a-solo-dev-should-i-bother-with-vs-team-system/409174#409174 1 Answer by Salamander2007 for If I'm a solo dev, should I bother with VS Team System? Salamander2007 2009-01-03T15:10:40Z 2009-01-04T00:21:40Z <p>I'd say that VS Team System is an overkill for single developer sweatshop, but your situation may proves otherwise. Team System is great when you're working on a project where all things are Microsoft, but all the extra features (database, architect, etc) will become useless when you start working with Oracle and MySQL database. Don't put too much stress on the tools, VS Pro is good enough if you want to save money. I'd rather spend more money on extra tools such as third party component and refactoring tools than the shining VS Team System.</p> <p>But, since you join the BizzSpark program, which I think is really great for startups, I think you should go and try VSTS. You basically pay nothing for the extra features. By the time you need to pay full for the licenses, I think you will gather enough experience on VSTS to decide either to stick with it, or rollback to pro.</p> http://stackoverflow.com/questions/405478/asp-net-datagrid-html-output-display/405755#405755 1 Answer by Salamander2007 for ASP.NET Datagrid HTML Output (Display) Salamander2007 2009-01-02T00:43:40Z 2009-01-02T00:43:40Z <p>Here's one quick way to solves your problem without using content template.</p> <p>First, add <code>RowDataBound</code> event to your GridView.</p> <pre><code>&lt;asp:GridView ID="GridView1" runat="server" onrowdatabound="GridView1_RowDataBound"&gt; &lt;/asp:GridView&gt; </code></pre> <p>Second, add the code for the event handler using your logic. RowDataBound event will fire for every row, we don't have to use <code>foreach</code>. I'm using C# but you can easily convert it to VB.</p> <pre><code>protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { if (e.Row.Cells[4].Text == "0") { e.Row.Cells[4].Text = "&lt;a href=''&gt; &lt;img src='img/box_icon_edit_pencil1.gif' border='0'&gt; &lt;/a&gt;" } else { e.Row.Cells[4].Text = "&lt;a href=''&gt; &lt;img src='img/box_icon_edit_pencil2.gif' border='0'&gt; &lt;/a&gt;" } } } </code></pre> <p>As a side note, you might want to change </p> <pre><code>&lt;a href=''&gt; &lt;img src='img/box_icon_edit_pencil1.gif' border='0'&gt; &lt;/a&gt; &lt;a href=''&gt; &lt;img src='img/box_icon_edit_pencil2.gif' border='0'&gt; &lt;/a&gt; </code></pre> <p>to</p> <pre><code>&lt;a href="" class="Pencil1"&gt;&lt;/a&gt; &lt;a href="" class="Pencil2"&gt;&lt;/a&gt; </code></pre> <p>and set the background image using CSS.</p> http://stackoverflow.com/questions/405076/how-to-save-a-user-made-html-page/405080#405080 1 Answer by Salamander2007 for How to save a user made HTML page? Salamander2007 2009-01-01T15:55:58Z 2009-01-01T15:55:58Z <p>Uhhm,.. press the save button? Seriously though, I think you might want to put more information on your question, such as what's system that you're using, etc, etc..</p> http://stackoverflow.com/questions/383979/dynamically-construct-querystring-behaviour-in-ie-and-ff-chrome 0 Dynamically construct querystring behaviour in IE and FF / Chrome Salamander2007 2008-12-21T01:32:03Z 2008-12-21T01:51:46Z <p>This code</p> <pre><code>function LoadContent(Id) { alert('Controls/Network/NetworkDetail.aspx?' + rnd() + '&amp;CtlId=' + Id); $.get('Controls/Network/NetworkDetail.aspx?' + rnd() + '&amp;CtlId=' + Id, function(data) { $(Id).append(data); }); $(Id).removeClass("Waiting"); } </code></pre> <p>works perfectly in IE7. the alert displayed intended querystring, and NetworkDetail.aspx page can obtain the CtlId using Request.QueryString["CtlId"]</p> <p>However, using FF3 and Chrome, Request.QueryString["CtlId"] returns null but the alert displayed the querystring correctly (no difference to IE7).</p> <p>the Id value is usually '#Tab1', or "#Tab2"</p> <p>Any idea on how to correctly construct querystring? </p> http://stackoverflow.com/questions/367009/asp-net-organisational-chart/367207#367207 0 Answer by Salamander2007 for ASP.NET Organisational Chart Salamander2007 2008-12-15T00:33:17Z 2008-12-15T00:33:17Z <p>Maybe <a href="http://research.microsoft.com/en-us/downloads/f1303e46-965f-401a-87c3-34e1331d32c5/default.aspx" rel="nofollow">Microsoft Automatic Graph Layout</a> will solve your problem. I haven't used it yet, so.. no guarantee.</p> http://stackoverflow.com/questions/352357/microsoft-net-development-series/352372#352372 -2 Answer by Salamander2007 for Microsoft .NET Development Series Salamander2007 2008-12-09T10:47:43Z 2008-12-09T10:47:43Z <p>What?? You can't find it on <a href="http://www.amazon.com/s/ref=nb_ss_gw?url=search-alias%3Daps&amp;field-keywords=Microsoft+.Net+Development+Series&amp;x=13&amp;y=23" rel="nofollow">Amazon</a>? </p> http://stackoverflow.com/questions/352172/can-a-session-be-falsified/352197#352197 2 Answer by Salamander2007 for Can a session be falsified? Salamander2007 2008-12-09T09:14:08Z 2008-12-09T09:14:08Z <p>Session can be hijacked. If I remember correctly, Classic ASP only support cookie-based session identifier. If someone were able to steal that cookie (wire-tap) then they can gain the same session as legitimate user.</p> <p>Should you check Session Object too? that depends. If you can make sure that all the object stored in sessions is "safe" (input has been sanitized), then you can skip session object. If somewhere in your application you get data from unsafe source and put it in Session object, then you must check it as well.</p> http://stackoverflow.com/questions/351428/have-you-been-committed-to-a-project-that-should-fail/351531#351531 5 Answer by Salamander2007 for Have you been committed to a project that should FAIL? Salamander2007 2008-12-09T01:34:14Z 2008-12-09T01:34:14Z <p>I agree with <a href="http://stackoverflow.com/questions/351428/have-you-been-committed-to-a-project-that-should-fail#351461">bmatthews68</a>. I've worked with several projects that destined to fail, right from the start, and the recipe is always the same, unrealistic timeline, over excitement on new technology without clear understanding, corporate IT environment, and in my case, typical pointy haired manager that doesn't even know what he wants.</p> <p>I don't know what's the best way to handle your situation, but here's what I've done.</p> <ol> <li><p>No, I did not quit. Too afraid. Too many loved ones depending on me. It's also possible that I'm a coward. And I was young at that time, and I've got too many bills to pay, and the money was good.</p></li> <li><p>I warned my direct supervisor immediately about the unrealistic timeline. It helps when the one supervising you also knows detailed technical aspects.</p></li> <li><p>I sets up an intermediate targets, that doesn't comply with all the specs, but realistic and usable enough to be implemented, given the timeline and resources.</p></li> <li><p>We release it as a V1.0 system, with the promise of V2 will come next. My manager was happy. He got something to show off to his boss, and as far as he's concerned, progress has been made. Of course the V2 never actually happens. We somehow able to weasel out of that project, using another project with higher priorities as a scapegoat.</p></li> </ol> <p>The situation maybe different from yours, but hopefully you will learn something from my experience.</p> http://stackoverflow.com/questions/237006/forgot-sql-server-password Comment by Salamander2007 on Forgot SQL Server Password Salamander2007 2009-12-21T07:38:08Z 2009-12-21T07:38:08Z I think this question belongs to ServerFault.com http://stackoverflow.com/questions/1919063/inter-process-communication-on-local-machine-using-socket-in-perl-and-c/1919085#1919085 Comment by Salamander2007 on inter-process communication on local machine using socket in perl and c# Salamander2007 2009-12-17T02:16:10Z 2009-12-17T02:16:10Z I'm rooting for the Named Pipes http://stackoverflow.com/questions/1899267/monitoring-watching-database-activity-programtically/1899347#1899347 Comment by Salamander2007 on Monitoring /Watching database (activity) programtically Salamander2007 2009-12-14T07:19:49Z 2009-12-14T07:19:49Z Or, if it was Oracle, use Database Change Notification : <a href="http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14251/adfns_dcn.htm" rel="nofollow">download.oracle.com/docs/cd/&hellip;</a> http://stackoverflow.com/questions/1517942/give-a-background-a-alpha-in-ie Comment by Salamander2007 on Give a background a alpha in IE Salamander2007 2009-10-05T06:33:45Z 2009-10-05T06:33:45Z I think this question belongs to doctype.com http://stackoverflow.com/questions/1400659/c-and-scientific-calculation/1402752#1402752 Comment by Salamander2007 on c# and scientific calculation Salamander2007 2009-09-10T00:13:36Z 2009-09-10T00:13:36Z I think you should mark Aziz answer as Accepted Answer. http://stackoverflow.com/questions/830497/how-do-i-shut-off-visual-studio-2008-script-debugging/830516#830516 Comment by Salamander2007 on How Do I Shut Off Visual Studio 2008 Script Debugging Salamander2007 2009-08-25T02:03:34Z 2009-08-25T02:03:34Z This registry tricks works well for me VSTS 2008 SP1, IE8, Win7 32Bit http://stackoverflow.com/questions/1210155/session-state-not-retained-over-calls-to-a-page-method/1210198#1210198 Comment by Salamander2007 on Session State not Retained over calls to a Page Method Salamander2007 2009-07-31T07:14:35Z 2009-07-31T07:14:35Z Locate your AJAX HTTP Post request, and examine the header. The cookie is in the header. You have to activate Net panel to be able to inspect traffic. http://stackoverflow.com/questions/50221/multithreading-in-asp-net/50377#50377 Comment by Salamander2007 on Multithreading in asp.net Salamander2007 2009-07-29T09:03:09Z 2009-07-29T09:03:09Z You've seem to be advocating this technique in multiple question on StackOverflow, and I think that it's the way to go for long running process like for example, billing process. Is there any sample code that you can share? or a keyword to binged? http://stackoverflow.com/questions/1134993/control-another-application-using-c/1180670#1180670 Comment by Salamander2007 on Control another application using C# Salamander2007 2009-07-27T03:30:45Z 2009-07-27T03:30:45Z mouseAction of what? I think it's better if you create another question and I'll see what I can do to help. http://stackoverflow.com/questions/1162339/script-entire-database-sql-server Comment by Salamander2007 on Script entire database SQL-Server Salamander2007 2009-07-22T00:17:39Z 2009-07-22T00:17:39Z Isn't this suppose to go to serverfault.com ? http://stackoverflow.com/questions/1136268/which-files-does-not-reduce-its-size-after-compression/1136357#1136357 Comment by Salamander2007 on Which files does not reduce its size after compression Salamander2007 2009-07-16T10:13:07Z 2009-07-16T10:13:07Z Not really. Not all PDF file automatically stores their content in compressed format. But you're right, PDF supports compression. Unless your PDF contains only images, there's a high probability that you could squeeze some extra space using ZIP or RAR http://stackoverflow.com/questions/1134993/control-another-application-using-c/1135005#1135005 Comment by Salamander2007 on Control another application using C# Salamander2007 2009-07-16T01:50:56Z 2009-07-16T01:50:56Z White seems like a good route. I'll look into that. http://stackoverflow.com/questions/1042618/how-to-create-a-datatable-in-c-and-how-to-add-rows/1042638#1042638 Comment by Salamander2007 on How to create a DataTable in c# and how to add rows? Salamander2007 2009-06-25T07:44:16Z 2009-06-25T07:44:16Z Don't forget to call dt.AcceptChanges() in case you use DataView with filter other than CurrentRows. http://stackoverflow.com/questions/1042618/how-to-create-a-datatable-in-c-and-how-to-add-rows/1042638#1042638 Comment by Salamander2007 on How to create a DataTable in c# and how to add rows? Salamander2007 2009-06-25T07:43:04Z 2009-06-25T07:43:04Z DataTable class doesn't have AddRow method. You have to do dt.Rows.Add(_ravi); instead http://stackoverflow.com/questions/652476/how-can-i-create-a-thumbnail-from-an-mpg-video-with-c/652912#652912 Comment by Salamander2007 on How can I create a thumbnail from an mpg video with C#? Salamander2007 2009-05-29T06:51:05Z 2009-05-29T06:51:05Z Thanks for the link to the CodeProject site. I'll try to use it in my project.