User ABParsons - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T01:11:29Z http://stackoverflow.com/feeds/user/79093 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/794668/css-div-problems-with-position 0 CSS div problems with position ABParsons 2009-04-27T18:26:18Z 2009-04-27T19:03:04Z <p>I have a css based asp.net masterpage. I am using a browse div located directly above a navigation div. The browse div is flowing down behind the navigation div. I did some playing around with the position and found that if i change the navigation position it fixes it, but everything in that div moves half way down the page. I have done some googleing and cant find anything about how to force a div to always be on top. If you need more info I can provide it.</p> <p>I have pasted select parts of the css code below:</p> <pre><code>#header2 { height: 2.5em; border-bottom: 1px dashed #0055a5; color: #FFF; background-color: white; } #header2 .browse { color: #000000; background-color: transparent; float: left; margin-left: 1em; margin-top: .1em; font-weight:bold; font-style: normal; font-variant: normal; font-size: 70%; line-height: normal; font-family: Arial, Helvetica, Georgia, "Times New Roman", Times, serif; width: 144px; position: fixed; } #navigation { background-color: white; width: 200px; height:100%; top: 105px; left: 0em; width: 13em; position: absolute; font-family: Arial, Helvetica, sans-serif; font-size:90%; } </code></pre> http://stackoverflow.com/questions/765683/if-fileupload-hasfilefalse/765730#765730 0 Answer by ABParsons for If (fileUpload.HasFile)=false ABParsons 2009-04-19T17:10:26Z 2009-04-19T17:10:26Z <p>I think it might be that you write you file to the directory and in doing that it clears out the fileupload form. This is happening before you run your if statement. Try moving your if/else above the "handleuploadedfile()" function. This should ensure that you can check the upload form before the system writes the file and removes it from the upload form.</p> http://stackoverflow.com/questions/754171/get-current-windows-user-vb-net 0 Get Current Windows User VB.net ABParsons 2009-04-15T23:34:11Z 2009-04-15T23:37:03Z <p>I have tried multiple ways of grabbing the username of a current logged on user in vb.net/asp.net. I am running it on IIS 6 and understand that it will return NETWORK SERVICE for the username. I need to grab the username of the actual windows box log on.</p> <p>I have tried the following code: Returns NT AUTHORITY\NETWORK SERVICE</p> <pre><code>Dim User = System.Security.Principal.WindowsIdentity.GetCurrent.User Dim UserName = User.Translate(GetType(System.Security.Principal.NTAccount)).Value </code></pre> <p>Any help will be greatly appreciated. If I am unclear please let me know.</p> http://stackoverflow.com/questions/749448/how-should-i-best-query-my-dataset-from-vb-net 2 How should I best query my dataset from VB.net? ABParsons 2009-04-14T21:31:44Z 2009-04-14T21:56:48Z <p>I have a VB.Net data set that contains data from multiple tables. Does anyone have any good suggestions on how to query data out of the dataset. I want to run SQL-like queries on a dataset to extract data that fits a certain "<code>where</code>" statement.</p> http://stackoverflow.com/questions/794668/css-div-problems-with-position Comment by ABParsons on CSS div problems with position ABParsons 2009-04-27T19:34:25Z 2009-04-27T19:34:25Z I cant provide links to sample pages. These pages are meant for intranet only. Thanks for you concern. http://stackoverflow.com/questions/794668/css-div-problems-with-position Comment by ABParsons on CSS div problems with position ABParsons 2009-04-27T18:30:48Z 2009-04-27T18:30:48Z There part that is falling behind the navigation is a javascript menu drop down. http://stackoverflow.com/questions/749448/how-should-i-best-query-my-dataset-from-vb-net/749457#749457 Comment by ABParsons on How should I best query my dataset from VB.net? ABParsons 2009-04-19T17:16:49Z 2009-04-19T17:16:49Z this method worked best for me. it was simple and got what i needed done. easy to understand to. http://stackoverflow.com/questions/754171/get-current-windows-user-vb-net/754179#754179 Comment by ABParsons on Get Current Windows User VB.net ABParsons 2009-04-15T23:40:20Z 2009-04-15T23:40:20Z works exactly as need. thanks for the quick answer. http://stackoverflow.com/questions/749448/how-should-i-best-query-my-dataset-from-vb-net/749457#749457 Comment by ABParsons on How should I best query my dataset from VB.net? ABParsons 2009-04-14T22:15:39Z 2009-04-14T22:15:39Z looks like a good viable option will check it out tomorrow and report back if it works for what I need. http://stackoverflow.com/questions/749448/how-should-i-best-query-my-dataset-from-vb-net/749471#749471 Comment by ABParsons on How should I best query my dataset from VB.net? ABParsons 2009-04-14T22:14:55Z 2009-04-14T22:14:55Z looks like a good viable option will check it out tomorrow and report back if it works for what I need.