User ABParsons - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T01:11:29Zhttp://stackoverflow.com/feeds/user/79093http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/794668/css-div-problems-with-position0CSS div problems with positionABParsons2009-04-27T18:26:18Z2009-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#7657300Answer by ABParsons for If (fileUpload.HasFile)=falseABParsons2009-04-19T17:10:26Z2009-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-net0Get Current Windows User VB.netABParsons2009-04-15T23:34:11Z2009-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-net2How should I best query my dataset from VB.net?ABParsons2009-04-14T21:31:44Z2009-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-positionComment by ABParsons on CSS div problems with positionABParsons2009-04-27T19:34:25Z2009-04-27T19:34:25ZI 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-positionComment by ABParsons on CSS div problems with positionABParsons2009-04-27T18:30:48Z2009-04-27T18:30:48ZThere 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#749457Comment by ABParsons on How should I best query my dataset from VB.net?ABParsons2009-04-19T17:16:49Z2009-04-19T17:16:49Zthis 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#754179Comment by ABParsons on Get Current Windows User VB.netABParsons2009-04-15T23:40:20Z2009-04-15T23:40:20Zworks exactly as need. thanks for the quick answer.http://stackoverflow.com/questions/749448/how-should-i-best-query-my-dataset-from-vb-net/749457#749457Comment by ABParsons on How should I best query my dataset from VB.net?ABParsons2009-04-14T22:15:39Z2009-04-14T22:15:39Zlooks 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#749471Comment by ABParsons on How should I best query my dataset from VB.net?ABParsons2009-04-14T22:14:55Z2009-04-14T22:14:55Zlooks like a good viable option will check it out tomorrow and report back if it works for what I need.