User Quintin Robinson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:11:47Zhttp://stackoverflow.com/feeds/user/12707http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807454/making-text-box-hidden-in-asp-net/1807461#18074613Answer by Quintin Robinson for Making text box hidden in ASP.NETQuintin Robinson2009-11-27T08:40:47Z2009-11-27T08:40:47Z<p>You can use a hidden field. </p>
<pre><code><asp:HiddenField id="myHiddenInput" runat="server" />
</code></pre>
<p>Use it just like a textbox.</p>
http://stackoverflow.com/questions/1758484/why-is-my-container-div-not-containing-my-floated-elements/1758517#17585171Answer by Quintin Robinson for Why is my "container" div not containing my floated elements?Quintin Robinson2009-11-18T19:39:42Z2009-11-18T19:39:42Z<p>Nothing is forcing the containment, you can specify a clear on the last element to force the conatinment. An common hack is to add an additional blocking element with <code>clear:both</code> ie: <code><div style="clear:both"></div></code></p>
http://stackoverflow.com/questions/1739669/hide-the-close-x-button-in-fancybox/1739680#17396801Answer by Quintin Robinson for Hide the close "X" button in FancyboxQuintin Robinson2009-11-16T02:05:42Z2009-11-16T02:05:42Z<p>If you take a look at the documentation at <a href="http://fancybox.net/howto" rel="nofollow">http://fancybox.net/howto</a> it cites an option of <code>showCloseButton</code> that should do the trick.</p>
<p>From the site:</p>
<blockquote>
<p>showCloseButton - Option to show/hide close button</p>
</blockquote>
http://stackoverflow.com/questions/1726962/how-to-add-script-codes-before-the-body-tag-asp-net/1726978#17269780Answer by Quintin Robinson for How to Add script codes before the </body> tag ASP.NET Quintin Robinson2009-11-13T03:33:50Z2009-11-13T03:33:50Z<p>You could delay your script execution until after the page loads, then it won't matter where your script resides.</p>
http://stackoverflow.com/questions/1718994/list-of-cdns-for-common-components-files/1719015#17190150Answer by Quintin Robinson for List of CDN's for common components/filesQuintin Robinson2009-11-12T00:19:05Z2009-11-12T00:19:05Z<p><a href="http://www.asp.net/ajax/cdn" rel="nofollow">Microsoft (Via asp.net)</a> offers a CDN for:</p>
<ul>
<li><a href="http://www.asp.net/ajax/cdn/#3" rel="nofollow">MS Ajax</a></li>
<li><a href="http://www.asp.net/ajax/cdn/#4" rel="nofollow">jQuery</a></li>
<li><a href="http://www.asp.net/ajax/cdn/#5" rel="nofollow">jQuery Validation</a></li>
<li><a href="http://www.asp.net/ajax/cdn/#6" rel="nofollow">ASP.NET MVC JavaScript</a></li>
</ul>
http://stackoverflow.com/questions/1718181/jquery-parent-parent-question/1718187#17181873Answer by Quintin Robinson for jQuery parent.parent questionQuintin Robinson2009-11-11T21:24:39Z2009-11-11T21:24:39Z<p>Try This: </p>
<pre><code>$("#DeleteItem").parents("li:first").remove();
</code></pre>
<p>Your primary issue is that <code>parent</code> call is a method call and cannot be accessed like a field. but to avoid the dual call you can do something like described above.</p>
http://stackoverflow.com/questions/1716719/possibility-of-implementing-minimize-to-tray-in-c-in-an-attribute/1716724#17167241Answer by Quintin Robinson for Possibility of Implementing Minimize-to-Tray in C# in an AttributeQuintin Robinson2009-11-11T17:21:22Z2009-11-11T17:21:22Z<p>This could be achieved easier with form inheritance rather than attributes, something is still going to have to interpret the attributes at runtime to achieve the desired effect. </p>
<p>With inheritance you can just setup the class to behave the way you like and have essentially an opt-in or opt-out ability (even using an attribute to do so).</p>
http://stackoverflow.com/questions/1712173/android-can-i-take-a-screen-capture-from-an-app/1712212#17122121Answer by Quintin Robinson for Android: Can I take a screen capture from an app?Quintin Robinson2009-11-11T00:28:10Z2009-11-11T00:28:10Z<p>Not without root access.</p>
http://stackoverflow.com/questions/1711654/what-is-wrong-with-my-javascript/1711670#17116704Answer by Quintin Robinson for what is wrong with my javascript?Quintin Robinson2009-11-10T22:24:06Z2009-11-10T22:24:06Z<p>Take a look at <a href="http://stackoverflow.com/questions/1552941/variables-in-anonymous-functions-can-someone-explain-the-following">this question</a>. It might help you understand scope and closures better, very similar to your question.</p>
http://stackoverflow.com/questions/1710821/software-parts-database/1710852#17108524Answer by Quintin Robinson for "Software Parts" DatabaseQuintin Robinson2009-11-10T20:10:15Z2009-11-10T20:10:15Z<p>Namespaces, Libraries, Documentation.. In a non-mainframe world, verbose or at least descriptive names in concisely named namespaces possibly split up into logical libraries are almost self-documenting as to use, nature and developer. Of course actual documentation supplementing the programs & libraries is always a good thing. </p>
<p>I don't think it would be advantageous for you to adopt the part/number convention but then again I don't know all the internals of your business.</p>
http://stackoverflow.com/questions/1710697/how-do-you-adjust/1710716#17107161Answer by Quintin Robinson for How do you adjust */&Quintin Robinson2009-11-10T19:52:30Z2009-11-10T19:52:30Z<p>You could argue that there is a 3rd solution possibly that it shouldn't be attached to either, ie: <code>char * a, b;</code> but seeing how any answer is going to be completely subjective, it's better to make a rule/standard for a team/company/project whatever and follow it through so everyone is clear on readability.</p>
http://stackoverflow.com/questions/1708709/linq-return-bool-where-a-val1-b-val2-from-model/1708732#17087320Answer by Quintin Robinson for Linq return bool where a = val1 & b = val2 from model?Quintin Robinson2009-11-10T15:18:19Z2009-11-10T15:18:19Z<p>You could try this, not familiar with your data though..</p>
<pre><code>Model.Timetable.Any(x => x.Time == timeval && x.DayOfWeek == i)
</code></pre>
http://stackoverflow.com/questions/1708597/disabling-ajaxsetup-defaults-for-some-ajax-calls/1708629#17086291Answer by Quintin Robinson for Disabling ajaxSetup Defaults for some AJAX CallsQuintin Robinson2009-11-10T15:05:12Z2009-11-10T15:05:12Z<p>You should be able to pass a new options object with every ajax call to overwrite the settings in the default when needed. </p>
<p>Not sure if your modal is on beforeSend or what have you, but I think you will get the picture from below.</p>
<pre><code>$.ajax({ beforeSend: function() { /* do nothing */ }....
</code></pre>
http://stackoverflow.com/questions/1705798/asp-net-how-to-test-a-linq-query/1705848#17058482Answer by Quintin Robinson for ASP.net: How to Test a LINQ QueryQuintin Robinson2009-11-10T05:39:04Z2009-11-10T05:45:25Z<p>The record would have to exist or the exception would have to be thrown during evaluation of the lambda, otherwise the exception thrown would be to the effect of </p>
<blockquote>
<p>The sequence contains no elements.</p>
</blockquote>
<p>Are you accessing any properties on the <code>vUser</code> object after the query or is the <code>this.wCreateUser</code> object possibly null?</p>
<p><strong>Edit</strong>: for comments..</p>
<p>If the exception is that the sequence contains no elements, the query being generated is not returning a result. I would recommend you examine the query being generated and test it directly against the SQL Server..</p>
<p>You can do this a few ways.</p>
<ol>
<li>Open SQL Profiler and watch the
query being executed.</li>
<li>Attach a TextWriter to the DataContext.Log so you can see the
output of the query (example
below)..</li>
<li>Use LINQPad as the other answer suggested.</li>
</ol>
<p>. </p>
<pre><code>StringBuilder sb = new StringBuilder();
StringWriter writer = new StringWriter(sb);
this.dcLAUNCHOnline.Log = writer;
//Execute Query..
//sb.ToString(); //will contain the sql produced by the LINQ Query
</code></pre>
http://stackoverflow.com/questions/1703571/how-to-pass-something-to-ajax-complete-jquery/1703617#17036171Answer by Quintin Robinson for How to pass something to Ajax.Complete jquery.Quintin Robinson2009-11-09T20:37:08Z2009-11-09T20:37:08Z<p>If MVC produces a 401 Unathorized response then the failure callback for the jQuery ajax call should get invoked and provide you with the XmlHttpRequest object. You can inspect the XmlHttpRequest for as status code of 401 <code>XmlHttpRequest.status == 401</code> and then change the page location via your script to the login, even provide a message if you like. Regardless if it produces a 401, any non-success status code should invoke the failure callback of the ajax request and you should be able to handle your situation in the method set to handle failures.</p>
<p>Something like the below generalized code could handle your failures.</p>
<pre><code>function(xhr, errorText, ex){
if(xhr.status == 401) {
//.. alert user and redirect to login ..
document.location = 'myloginpage.html';
}
...
}
</code></pre>
http://stackoverflow.com/questions/1703478/embed-google-yahoo-search-into-a-web-site-or-build-your-own/1703525#17035250Answer by Quintin Robinson for Embed Google/ Yahoo search into a web site or build your ownQuintin Robinson2009-11-09T20:24:22Z2009-11-09T20:30:00Z<p>I've used <a href="http://omnifind.ibm.yahoo.net/" rel="nofollow">IBM OmniFind Yahoo Edition</a> and had fantastic results with it. You are limited to a single index per implementation but it's very fast and easy to integrate with and extensible in terms of search customization. I've used it with a ASP.NET site without issue. A caveat being that it needs to be installed on the server and running as a service so it is out of the question for most shared hosting. It has the index capabilities of general search engines (pdf/html/etc) which is very nice.</p>
<p><strong>Edit</strong>: </p>
<p>I forgot to mention that some of the reasons I liked it vs other options is that it is free and doesn't require any additional hardware, just FYI.</p>
http://stackoverflow.com/questions/1699403/why-when-running-a-program-through-a-service-is-the-program-not-actually-shown/1699413#16994131Answer by Quintin Robinson for Why when running a program through a service, is the program not actually shown?Quintin Robinson2009-11-09T06:41:23Z2009-11-09T06:41:23Z<p>Services are meant as background applications, not foreground applications. Generally they run without direct user input or with user input through IPC (often providing a centralized point for multiple applications to communicate). </p>
<p>It's not common to setup any applications to just run as a service. Applications that run as a service are generally specifically engineered to do so because they perform certain tasks and may want to always be running to perform such tasks.</p>
http://stackoverflow.com/questions/1697965/initializer-string-for-array-of-chars-is-too-long/1697972#16979724Answer by Quintin Robinson for initializer-string for array of chars is too longQuintin Robinson2009-11-08T21:27:36Z2009-11-08T21:27:36Z<p>I think it's because there aren't any commas in your array initialization...</p>
<pre><code>char array[num][length] = { "Becky Warre, 555-1223",
"Joe Looney, 555-0097",
"Geri Palmer, 555-8787",
"Lynn Presnell, 555-1212",
"Holly Gaddis, 555-8878",
"Sam Wiggins, 555-0998",
"Bob Kain, 555-8712",
"Tim Haynes, 555-7676",
"Warren Gaddis, 555-9037",
"Jean James, 555-4939",
"Ron Palmer, 555-2893" }
</code></pre>
http://stackoverflow.com/questions/1695606/pointers-problem/1695613#16956137Answer by Quintin Robinson for Pointers problem..Quintin Robinson2009-11-08T06:59:30Z2009-11-08T06:59:30Z<p>It's all about precedence. </p>
<p>In the first example you are incrementing the location that <code>*p</code> points to. </p>
<p>In the second example you are dereferencing <code>*p</code> and incrementing the value.</p>
http://stackoverflow.com/questions/1695559/css-box-borders/1695580#16955803Answer by Quintin Robinson for CSS box bordersQuintin Robinson2009-11-08T06:38:06Z2009-11-08T06:43:20Z<p>You could change the style of the elements that contain "This is my Text" to <code>display:inline</code> and that should provide the desired effect.</p>
<p>It's worthy to note that without knowing the entire layout or rather just setting this as the default style may have unforeseen consequences (causing normally blocking elements to not block). A better solution would be to wrap the text in elements that would normally have this effect or apply specific classes to the normally blocking elements to differentiate them.</p>
http://stackoverflow.com/questions/1695572/need-help-in-asp-net-password-textbox/1695576#16955762Answer by Quintin Robinson for Need help in asp.net password textboxQuintin Robinson2009-11-08T06:34:54Z2009-11-08T06:34:54Z<p>It's not a mistake it's just that passwords won't be sent back to the client after a postback, this is by design. What is your intent?.. is there a reason you would like the password boxes to persist through postbacks?</p>
http://stackoverflow.com/questions/1693673/jquery-how-to-filter-rows-onclick/1693685#16936850Answer by Quintin Robinson for jQuery - How to filter rows onclick?Quintin Robinson2009-11-07T16:56:45Z2009-11-07T16:56:45Z<p>You could do something like below respectively for each button click, it should work out.</p>
<pre><code>$("tr:not(.dr)").hide();
$("tr.dr").show();
</code></pre>
<p>IE:</p>
<pre><code>$(document).ready(function(){
$(":button[name='filterdr']").click(function(){
$("tr:not(.dr)").hide();
$("tr.dr").show();
});
});
</code></pre>
http://stackoverflow.com/questions/1693608/banishing-the-command-prompt-window-winforms/1693628#16936285Answer by Quintin Robinson for Banishing the Command Prompt Window (WinForms)Quintin Robinson2009-11-07T16:42:03Z2009-11-07T16:47:20Z<p>Go into the properties of your project and change your application "Output Type" from "Console Aplication" to "Windows Application".</p>
<p>This will fix your issue.</p>
http://stackoverflow.com/questions/1692188/dynamic-memory-allocation-in-c/1692200#16922004Answer by Quintin Robinson for Dynamic Memory Allocation in C++Quintin Robinson2009-11-07T06:23:24Z2009-11-07T06:23:24Z<p><code>delete</code> will free memory dynamically allocated in unmanaged C++<br>
<code>Dispose</code> will force custom object implemented maintenance of disposable objects in managed C++/CLI</p>
http://stackoverflow.com/questions/1689979/getting-a-substring-from-a-regular-expression/1690003#16900030Answer by Quintin Robinson for getting a substring from a regular expressionQuintin Robinson2009-11-06T20:00:36Z2009-11-06T20:00:36Z<p>Platform grep or general regular expression?</p>
<p>Regex </p>
<pre><code>SRC\=\'(\d{3})\'
</code></pre>
http://stackoverflow.com/questions/1689766/assign-css-to-specific-element/1689784#16897846Answer by Quintin Robinson for Assign css to specific elementQuintin Robinson2009-11-06T19:27:52Z2009-11-06T19:27:52Z<p>If you can set a id or a class on the LI, then it would be trivial..</p>
<pre><code>ul li {
color: #a9a9a9;
border-top: 1px solid #333;
border-bottom: #555858;
list-style-type: none;
padding: 10px 10px 10px 10px;
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#4c4d4e), to(#404142));
overflow: hidden;
}
ul li.special {
font: normal 17px Helvetica;
}
<li class="special">Outside Job<span class="toggle"><input type="checkbox" /></span></li>
</code></pre>
<p>Aside from that, there is no simple way to do this cross-browser with css alone.</p>
http://stackoverflow.com/questions/1689279/c-events-without-arguments-how-do-i-handle-them/1689295#16892955Answer by Quintin Robinson for C# Events without arguments. How do I handle them?Quintin Robinson2009-11-06T18:03:55Z2009-11-06T18:03:55Z<p>Try: </p>
<pre><code>public event EventHandler Selected;
</code></pre>
<p>then to call..</p>
<pre><code>Selected(null, EventArgs.Empty);
</code></pre>
<p>This way it's the default event definition and you don't need to pass any information if you don't want to.</p>
http://stackoverflow.com/questions/1682373/linq-to-sql-help-with-invalidcastexception-in-my-query/1682429#16824290Answer by Quintin Robinson for Linq to Sql: Help with InvalidCastException in my queryQuintin Robinson2009-11-05T18:01:22Z2009-11-05T20:39:27Z<p>I can't say for sure because the VB syntax has thrown me off, but I believe it is because in the statement prior to the except you are selecting a new anonymous object (with multiple properties) and in the query being passed to Except you are only selecting a single column. So it is unable to compare the types properly.</p>
<p>Effectively it appears that you are trying to compare: </p>
<pre><code>c.CourseID, c.CourseName, c.CreditHours
</code></pre>
<p>with</p>
<pre><code>c.CourseID
</code></pre>
<p>and LINQ doesn't know how to do that properly.. It may work if you expand the secondary select it include <code>c.CourseName</code> and <code>c.CreditHours</code></p>
<p>Making it: </p>
<pre><code>Dim maj = (From c In connect.Courses _
Where c.CPTRequired = "True" _
Select c.CourseID, c.CourseName, c.CreditHours).Except _
(From en In connect.Enrollments _
Join s In connect.Sections On en.SectionID Equals s.SectionID _
Join cs In connect.Courses On s.CourseID Equals cs.CourseID _
Join st In connect.Students On en.StudentID Equals st.StudentID _
Order By cs.CourseName _
Where st.StudentID = StudentID _
Select cs.CourseID, cs.CourseName, cs.CreditHours)
</code></pre>
<p>But again i'm not all that familiar with the VB syntax so best I can say is give it a shot.</p>
<p><strong>Edit:</strong> Moving Context logging code from comment to answer.. </p>
<pre><code>Dim sb As New StringBuilder
Dim sw As New StringWriter(sb)
connect.Log = sw
...Do Query & Enumerate Results...
sb.ToString() 'will contain the generated SQL
</code></pre>
http://stackoverflow.com/questions/1682310/c-generics-problem-newing-up-the-generic-type-with-parameters-in-the-construct/1682331#16823314Answer by Quintin Robinson for C# generics problem - newing up the generic type with parameters in the constructorQuintin Robinson2009-11-05T17:46:03Z2009-11-05T17:46:03Z<p>Have you considered using Activator (this is just another option).</p>
<pre><code>T homepageMgmtCarouselItem = Activator.CreateInstance(typeof(T), pageData) as T;
</code></pre>
http://stackoverflow.com/questions/1678643/what-is-different-linq-to-sql-where-clause/1678648#16786482Answer by Quintin Robinson for What is different linq to sql where clause Quintin Robinson2009-11-05T06:12:37Z2009-11-05T06:12:37Z<p>The where clause in the second looks to be improper syntax, aside from opening/closing the connection they should evaluate to the same code. That is to say the SQL will be generated and executed when the result set is actually enumerated over.</p>
<p>You could omit the rest of the code and simply write: </p>
<pre><code>var albums = from a in context.Albums
where a.id == id
select a;
</code></pre>
<p>or</p>
<pre><code>var albums = context.Albums.Where(a => a.id == id);
</code></pre>
<p>They will evaluate to the same exact thing when the results are enumerated.</p>
http://stackoverflow.com/questions/1805498/object-serializing-performanceComment by Quintin Robinson on Object serializing performanceQuintin Robinson2009-11-26T20:28:25Z2009-11-26T20:28:25ZThis would be very dependent on language, platform, techniques used, restrictions in place as well as definitions of real-time and serialization.http://stackoverflow.com/questions/1712173/android-can-i-take-a-screen-capture-from-an-app/1712212#1712212Comment by Quintin Robinson on Android: Can I take a screen capture from an app?Quintin Robinson2009-11-12T02:31:50Z2009-11-12T02:31:50ZI don't have any source that does this sorry, Koushik Dutta made an application I believed he used a hack in the source to trigger the same mechanism that DDMS uses to take it's screen shots.. he has a page up about the app, you will probably find a lot more information on xda developers (android development forum section). Here is the link I was talking about: <a href="http://www.koushikdutta.com/2008/11/android-screenshot-application.html" rel="nofollow">koushikdutta.com/2008/11/…</a>http://stackoverflow.com/questions/1719047/jquery-to-hide-all-row-classes-except-row2-only-when-the-parent-class-is-viewc/1719058#1719058Comment by Quintin Robinson on jQuery to hide all row classes except 'row2' only when the parent class is viewContainerTopQuintin Robinson2009-11-12T02:24:39Z2009-11-12T02:24:39Z@jitter You are correct, big whoopsie on my part.http://stackoverflow.com/questions/1718181/jquery-parent-parent-question/1718229#1718229Comment by Quintin Robinson on jQuery parent.parent questionQuintin Robinson2009-11-11T21:37:28Z2009-11-11T21:37:28ZActually it should only target the first li in the direct parent hierarchy beginning from the anchor. The selector is within context and not asking for all the li elements of the UL.http://stackoverflow.com/questions/1716719/possibility-of-implementing-minimize-to-tray-in-c-in-an-attribute/1716788#1716788Comment by Quintin Robinson on Possibility of Implementing Minimize-to-Tray in C# in an AttributeQuintin Robinson2009-11-11T17:52:58Z2009-11-11T17:52:58Z+1 Thats like the materialized version of my answer lol, plust I like the way you accounted for System Shutdown and Application Exit (the things I always forget the first go around). BTW don't feel bad for the downvote, I got downvoted too without explanation, it just happens.http://stackoverflow.com/questions/1710697/how-do-you-adjust/1710716#1710716Comment by Quintin Robinson on How do you adjust */&Quintin Robinson2009-11-10T19:58:42Z2009-11-10T19:58:42ZYou are never going to find a consistent answer, my recommendation would be to try and find a consensus among your group or at least a majority rule, set and enforce the standard that you come up with locally.http://stackoverflow.com/questions/1705798/asp-net-how-to-test-a-linq-query/1705848#1705848Comment by Quintin Robinson on ASP.net: How to Test a LINQ QueryQuintin Robinson2009-11-10T06:06:55Z2009-11-10T06:06:55ZGood deal! That's a solution I commonly use to log and reproduce queries.http://stackoverflow.com/questions/1705798/asp-net-how-to-test-a-linq-query/1705848#1705848Comment by Quintin Robinson on ASP.net: How to Test a LINQ QueryQuintin Robinson2009-11-10T05:48:53Z2009-11-10T05:48:53ZNo problem, I hope you get your issue resolved.http://stackoverflow.com/questions/1703571/how-to-pass-something-to-ajax-complete-jquery/1703617#1703617Comment by Quintin Robinson on How to pass something to Ajax.Complete jquery.Quintin Robinson2009-11-09T20:42:48Z2009-11-09T20:42:48ZYou would attach it to the error callback. In which case are you getting a 200 ?http://stackoverflow.com/questions/1701969/linq-to-sql-sp-is-returning-multiple-recordsets-when-i-only-want-one/1701987#1701987Comment by Quintin Robinson on Linq to SQL SP is returning multiple recordsets when I only want one!Quintin Robinson2009-11-09T16:08:51Z2009-11-09T16:08:51ZYes, when I can remember the name of the command that LINQ uses internally to "view" the proc and examine the output I will let you know so you can see what it sees, alternatively you might have to edit the DBML as XML and just modify the proc statement.http://stackoverflow.com/questions/1697965/initializer-string-for-array-of-chars-is-too-long/1697972#1697972Comment by Quintin Robinson on initializer-string for array of chars is too longQuintin Robinson2009-11-08T21:40:27Z2009-11-08T21:40:27Z@Raptrex It happens, I'm sure we've all been there.http://stackoverflow.com/questions/1697965/initializer-string-for-array-of-chars-is-too-long/1697981#1697981Comment by Quintin Robinson on initializer-string for array of chars is too longQuintin Robinson2009-11-08T21:31:58Z2009-11-08T21:31:58Z+1 for std::string.. no vector though?http://stackoverflow.com/questions/1695633/how-to-pass-a-variable-into-regex-in-jquery-javascript/1695639#1695639Comment by Quintin Robinson on How to pass a variable into regex in jQuery/JavascriptQuintin Robinson2009-11-08T07:26:14Z2009-11-08T07:26:14ZI see more clearly what you mean now, I would recommend the other solutions.http://stackoverflow.com/questions/1695606/pointers-problem/1695613#1695613Comment by Quintin Robinson on Pointers problem..Quintin Robinson2009-11-08T07:03:58Z2009-11-08T07:03:58ZI have a tendency to modify my answer slightly for word correction after I post it initially, sorry if it looked a little odd.http://stackoverflow.com/questions/1695572/need-help-in-asp-net-password-textbox/1695576#1695576Comment by Quintin Robinson on Need help in asp.net password textboxQuintin Robinson2009-11-08T06:50:42Z2009-11-08T06:50:42ZWell you could use the approach recommended by harpo but beware that this will expose the password back in plaintext in the rendered HTML. Alternatively you could wait to ask for password input until the rest of the content that requires postbacks has been completed or stop posting back on the dropdownlist if not required.