User fr0man - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T21:23:19Zhttp://stackoverflow.com/feeds/user/53159http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1439294/modalpopupextender-wont-render-in-front-of-everything-in-ie7-ie8-compatibility-m1ModalPopupExtender won't render in front of everything in IE7/IE8 Compatibility modefr0man2009-09-17T14:36:42Z2009-11-17T02:58:33Z
<p>I have a ModalPopupExtender from the AjaxControlToolkit that is working properly in Firefox, Chrome and IE8, but when I run it in IE8 Compatibility mode, it pops up behind the content of my page, rather than on top.<br />
The popup is in a user control that's rendered by the Masterpage. What I think is happening is it's popping up in front of the master page content, as the Masterpage content (my header and sidebars) is greyed out, but the content placeholders are rendering in front of my popup. I found a solution online that suggested changing your doctype declaration in the master page to:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</code></pre>
<p>But I already had that exact declaration and still have the positioning problem. Here is the popup code:</p>
<pre><code><cc1:ModalPopupExtender ID="ModalPopupExtender1" runat="server"
TargetControlID="lnkbtnDealerID"
PopupControlID="pnlPopup"
BackgroundCssClass="modalBackground"
DropShadow="true"
OkControlID="OkButton"
CancelControlID="CancelButton"
OnOkScript=""
>
</cc1:ModalPopupExtender>
<asp:Panel ID="pnlPopup" runat="server" CssClass="modalPopup" Style="display: none" Width="233px">
<p>Are you sure? Your current shopping cart is valid only for the current Dealer ID. Switching Dealer IDs will reset your cart according to the new Dealer ID chosen.</p>
<br />
<div align="center">
<asp:Button ID="OkButton" runat="server" Text="Ok" />
<asp:Button ID="CancelButton" runat="server" Text="Cancel" />
</div>
</asp:Panel>
</code></pre>
<p>And the relevant CSS:</p>
<pre><code>.popupControl {
background-color: white;
position:absolute;
visibility:hidden;
border-style:solid;
border-color: Black;
border-width: 2px;
}
.modalBackground {
background-color:Gray;
filter:alpha(opacity=70);
opacity:0.7;
}
.modalPopup {
background-color:white;
border-width:1px;
border-style:solid;
border-color:Gray;
padding:3px;
width:250px;
}
</code></pre>
http://stackoverflow.com/questions/1563141/best-way-to-display-a-loading-gif-while-a-database-call-process-on-the-first-page0Best way to display a loading gif while a database call process on the first page load.fr0man2009-10-13T21:53:23Z2009-10-14T17:33:19Z
<p>So I'm new to Ajax. I have an ASP.NET wizard panel wrapped in an ASP Ajax UpdatePanel. The Ajax is working well, with the page doing partial updates as you step through the wizard. I'm even firing an animated gif images using the unblockUI.js jQuery library to prevent multiple page submits. What I can't figure out is when the page first loads, the wizard panel takes nearly a minute to load initially because of a longish database call. This isn't an async postback, so my animated gif doesn't fire. In fact, I just get an hour glass while the page loads. Is there a way to go ahead and load the rest of the page content and display that gif while the minute long database call is in effect? I've tried moving the DB call to after the page load, but it's still doing it on the initial page load and I don't get to do it asynchronously.<br />
Again, I'm new to the asynchronous stuff. This seems like it should be simple, but I'm stuck. </p>
<p>Update:
Ok, the tricky part for me was figuring out how to do the data load with the Ajax call. I have virtually no experience with that. This may be a kludge, but it's actually working pretty well without too much new code:
I moved the data load from the Page Load to the Load event of my UpdatePanel, but put it in an If IsPostBack. It's the same code behind that was running before, but now only runs on a postback. Then in my markup, I put this (thanks to the answer below):</p>
<pre><code>$(document).ready(function()
{
__doPostBack('<%= Me.UpdatePanel1.ClientID %>', '');
});
</code></pre>
<p>I just unhide the waiting div by default and hide it in the If IsPostback piece after the data loads. I had to mess with some control hiding logic (back and proceed buttons for the wizard, the loading.gif div, etc.), but the only new code was above. </p>
http://stackoverflow.com/questions/1446308/asp-net-user-control-on-a-master-page-renders-behind-my-main-content-when-viewed0ASP.NET User control on a master page renders behind my main content when viewed in IE7fr0man2009-09-18T18:55:42Z2009-09-18T19:10:38Z
<p>So I have a user control in my master page. When it's viewed in IE7 (or IE8 Compatibility mode), it renders behind the page content from the ContentPlaceHolders. I've tried manually setting the z-index of every element in sight, and none of it will put the control in front. Has anyone else encountered this? It works in Chrome, Firefox, Safari, and IE8 no-compatibility. </p>
<p>I've also changed my doctype in my master page to the following, as has been suggested elsewhere, but it's no use. </p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
</code></pre>
<p>From the master page:</p>
<pre><code><%@ Register Src="controls/UserInfo.ascx" TagName="UserInfo" TagPrefix="uc1" %>
<div class="head-links">
<uc1:UserInfo ID="UserInfo1" runat="server" />
</div>
</code></pre>
<p>From the User Control:</p>
<pre><code> <asp:Panel ID="pnlPopup" runat="server" CssClass="modalPopup" Width="233px" style="z-index: 1000" >
<p>Are you sure? Your current shopping cart is valid only for the current Dealer ID. Switching Dealer IDs will reset your cart according to the new Dealer ID chosen.</p>
<br />
<div align="center" style="z-index:99">
<asp:Button ID="OkButton" runat="server" Text="Ok" />
<asp:Button ID="CancelButton" runat="server" Text="Cancel" />
</div>
</asp:Panel>
</code></pre>
<p>And the CSS:</p>
<pre><code>.modalPopup {
background-color:white;
border-width:1px;
border-style:solid;
border-color:Gray;
padding:3px;
width:250px;
}
.head-links
{
position: absolute;
top: 0px;
right: 70px;
text-align: left;
width: 170px;
}
.head-links a
{
color: #fff;
text-decoration: underline;
}
.head-links a:hover
{
color: #fff;
text-decoration: none;
}
</code></pre>
http://stackoverflow.com/questions/1203268/asp-net-wizard-back-button-wont-work0ASP.NET Wizard Back Button won't workfr0man2009-07-29T21:47:54Z2009-07-30T15:16:13Z
<p>I have a ASP.NET Wizard running my checkout process of my shopping cart. I just added a Paypal Express checkout link to my 2nd step. The Paypal process takes the user away from the page and then redirects them back to my wizard when they're done. I'm parsing an HTTP parameter with Request.QueryString when the user comes back from Paypal to set the wizard to step 3. This loads just fine, but when I click on the Back button (of the wizard), it does a postback but stays on step 3. Can anyone think of a reason for this? The link it's referencing still has the HTTP parameters, but I'm checking for a postback prior to programmatically setting the wizard step based on the parameter. Does anyone have any experience with this?</p>
http://stackoverflow.com/questions/1203268/asp-net-wizard-back-button-wont-work/1207289#12072890Answer by fr0man for ASP.NET Wizard Back Button won't workfr0man2009-07-30T15:16:13Z2009-07-30T15:16:13Z<p>Well, I'm not sure why it was doing it, but overriding the blackbox PreviousButtonClick event on the wizard with the following code fixed it. It seems to me like this should be the behavior the button was implementing anyway, but it wasn't. Weird.</p>
<pre><code>
Protected Sub wizSubmitOrder_PreviousButtonClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.WizardNavigationEventArgs) Handles wizSubmitOrder.PreviousButtonClick
Dim previousStepIndex As Integer = wizSubmitOrder.ActiveStepIndex - 1
wizSubmitOrder.MoveTo(wizSubmitOrder.WizardSteps(previousStepIndex))
End Sub
</code></pre>
http://stackoverflow.com/questions/916044/accessing-a-property-of-a-master-page-from-a-class-thats-not-part-of-a-content-p/916339#9163390Answer by fr0man for Accessing a Property of a Master Page from a class that's not part of a content page in ASP.NETfr0man2009-05-27T15:15:31Z2009-05-27T15:15:31Z<p>So I had my BasePage in App_Code and was trying to set a property of my NIMS_Master class which was in the application root directory. I had to create a MasterBase class that inherits from System.Web.UI.MasterPage in App_Code and put my properties there. Sheesh, I'm not even sure why I thought I could access those class properties from within app_code.</p>
http://stackoverflow.com/questions/916044/accessing-a-property-of-a-master-page-from-a-class-thats-not-part-of-a-content-p0Accessing a Property of a Master Page from a class that's not part of a content page in ASP.NETfr0man2009-05-27T14:32:30Z2009-05-27T15:15:31Z
<p>So I'm wiring up my first MasterPage, and everything is working great except for one thing. This is a legacy app, and I have an old BasePage class that all my content pages inherit. It inherits from System.Web.UI.Page, but has no content itself (no .aspx file). It runs a bunch of the user authentication/role granting menu building. I want to keep this functionality but use it to set controls on my MasterPage to build out the menus. I cannot for the life of me figure out how to reference the MasterPage properties without a MasterType declaration in a content page. </p>
<p>My MasterPage class is called NIMS_Master, and I have the following in it (just trying to get started):</p>
<p><code>
public partial class NIMS_Master : System.Web.UI.MasterPage
{
public string MenuList { get; set; }</p>
<pre><code> protected void Page_Load(object sender, EventArgs e)
{}
}
</code></pre>
<p></code></p>
<p>With a MasterType declaration in one of my content pages:
<code><br />
<%@ MasterType VirtualPath="~/NIMS_Master.master" %>
</code></p>
<p>I can access my property in Login.aspx.cs as follows:</p>
<p><code>
this.Master.MenuList = "this is the menu list";
</code></p>
<p>But in my BasePage.cs, I have nowhere to put the MasterType declaration. All the google searches indicate I have to cast my NIMS_Master class as a Master, but I cannot get it to work to save my life. I've tried several different things, but my NIMS_Master class just doesn't show up in BasePage. </p>
<p><code>
((this.Master)NIMS_Master).MenuList = "This is a menu list";
</code></p>
<p>BasePage.cs is in my App_Code directory and my MasterPage file is in the application root, if that matters.</p>
http://stackoverflow.com/questions/750413/altering-the-primary-key-in-rails-to-be-a-string5Altering the primary key in Rails to be a stringfr0man2009-04-15T05:25:15Z2009-05-12T17:24:03Z
<p>So I've got two models, State and Acquisition. State has_many Acquisitions. I felt like an autoincrementing integer primary key for 51 records was rather silly. So I altered the model for the State to be the PK (State being the two letter abbreviation; I'm not storing the actual state name anywhere:</p>
<pre><code>class State < ActiveRecord::Base
self.primary_key = "state"
has_many :acquisition_histories
end
</code></pre>
<p>The problem is when I created my Acquisition model, it created the foreign key column state_id as an integer. More specifically, the script/generated migration did:</p>
<pre><code>class CreateAcquisitions < ActiveRecord::Migration
def self.up
create_table :acquisitions do |t|
t.date :date
t.string :category
t.text :notes
t.references :state
t.timestamps
end
end
</code></pre>
<p>I'm assuming that t.references data type sets it to int. The problem is my create method on my Acquisition class is trying to put a state abbreviation into the state_id field on the table acquisitions (and yes, it's called state_id on the database, even though it says :state in the migration script). The method doesn't fail, but it does put a 0 in the state_id field and the records go into the ether. </p>
http://stackoverflow.com/questions/426573/how-do-you-kill-a-process-for-a-particular-user-in-net-c/429248#4292481Answer by fr0man for How do you kill a process for a particular user in .NET (C#)?fr0man2009-01-09T18:52:31Z2009-01-09T18:52:31Z<p>Ok, here's what I ended up doing:</p>
<pre><code> Process[] processlist = Process.GetProcesses();
bool rdpclipFound = false;
foreach (Process theprocess in processlist)
{
String ProcessUserSID = GetProcessInfoByPID(theprocess.Id);
String CurrentUser = WindowsIdentity.GetCurrent().Name.Replace("SERVERNAME\\","");
if (theprocess.ProcessName == "rdpclip" && ProcessUserSID == CurrentUser)
{
theprocess.Kill();
rdpclipFound = true;
}
}
Process.Start("rdpclip");
if (rdpclipFound)
{
MessageBox.Show("rdpclip.exe successfully restarted"); }
else
{
MessageBox.Show("rdpclip was not running under your username. It has been started, please try copying and pasting again.");
}
}
</code></pre>
http://stackoverflow.com/questions/426573/how-do-you-kill-a-process-for-a-particular-user-in-net-c1How do you kill a process for a particular user in .NET (C#)?fr0man2009-01-09T00:07:01Z2009-01-09T18:52:31Z
<p>I work off of a multi-user Windows Server, and the rdpclip bug bites us all daily. We usually just open task manager and kill then restart rdpclip, but that's a pain in the butt. I wrote a powershell script for killing then restarting rdpclip, but no one's using it because it's a script (not to mention the execution policy is restricted for the box). I'm trying to write a quick and dirty windows app where you click a button to kill rdpclip and restart it. But I want to restrict it to the current user, and can't find a method for the Process class that does this. So far, here's what I have:</p>
<pre><code>Process[] processlist = Process.GetProcesses();
foreach(Process theprocess in processlist)
{
if (theprocess.ProcessName == "rdpclip")
{
theprocess.Kill();
Process.Start("rdpclip");
}
}
</code></pre>
<p>I'm not certain, but I think that's going to kill all the rdpclip processes. I'd like to select by user, like my powershell script does:</p>
<pre><code>taskkill /fi "username eq $env:username" /im rdpclip.exe
& rdpclip.ex
</code></pre>
<p>I suppose I could just invoke the powershell script from my executable, but that seems fairly kludgy.</p>
<p>Apologies in advance for any formatting issues, this is my first time here.</p>
<p>UPDATE: I also need to know how to get the current user and select only those processes. The WMI solution proposed below doesn't help me get that. </p>
<p>UPDATE2: Ok, I've figured out how to get the current user, but it doesn't match the process user over Remote Desktop. Anyone know how to get username instead of the SID?</p>
<p>Cheers,
fr0man</p>
http://stackoverflow.com/questions/1563141/best-way-to-display-a-loading-gif-while-a-database-call-process-on-the-first-page/1563162#1563162Comment by fr0man on Best way to display a loading gif while a database call process on the first page load.fr0man2009-10-13T22:02:52Z2009-10-13T22:02:52ZYeah, but it's the first full page load that is taking so long. So I don't have any elements of the page displaying until it's done. I'd like to have the loading.gif display on the initial page load, then fire the DB call asynchronously once everything is done loading. Then disable the loading.gif once the DB call is done. I just don't know how to place the DB call to fire after the page is loaded and displayed. http://stackoverflow.com/questions/1446308/asp-net-user-control-on-a-master-page-renders-behind-my-main-content-when-viewed/1446321#1446321Comment by fr0man on ASP.NET User control on a master page renders behind my main content when viewed in IE7fr0man2009-09-18T19:03:48Z2009-09-18T19:03:48ZNothing that's not behind a login, unfortunately. And a sample is really too long to post here.
Since yesterday I've realized it has nothing to do with the AjaxControlToolkit or the ModalPopupExtender I was trying to use. If I just put the asp:panel in my user control I can't get it in front of my main page content. http://stackoverflow.com/questions/1439294/modalpopupextender-wont-render-in-front-of-everything-in-ie7-ie8-compatibility-m/1439470#1439470Comment by fr0man on ModalPopupExtender won't render in front of everything in IE7/IE8 Compatibility modefr0man2009-09-17T16:17:56Z2009-09-17T16:17:56ZThis was promising, but didn't work. I put a z-index on and around everything I could and it's still not popping in front of my placeholder content. http://stackoverflow.com/questions/1439294/modalpopupextender-wont-render-in-front-of-everything-in-ie7-ie8-compatibility-mComment by fr0man on ModalPopupExtender won't render in front of everything in IE7/IE8 Compatibility modefr0man2009-09-17T14:49:18Z2009-09-17T14:49:18ZThat sounds similar to what I have, but it would look odd for me to hide my main page content when I do the popup. http://stackoverflow.com/questions/916044/accessing-a-property-of-a-master-page-from-a-class-thats-not-part-of-a-content-p/916074#916074Comment by fr0man on Accessing a Property of a Master Page from a class that's not part of a content page in ASP.NETfr0man2009-05-27T14:42:41Z2009-05-27T14:42:41ZOops, you're right. However, this is what I get when I try that:
Error 6 The type or namespace name 'NIMS_Master' could not be found (are you missing a using directive or an assembly reference?)
I know I'm missing something simple here to expose my NIMS_Master class to my BasePage class.
http://stackoverflow.com/questions/750413/altering-the-primary-key-in-rails-to-be-a-string/750564#750564Comment by fr0man on Altering the primary key in Rails to be a stringfr0man2009-04-16T02:37:09Z2009-04-16T02:37:09ZI'm not worried about performance at all, I just don't like the concept of an extra unique identifier. But I'm going to go back with the convention, assuming I can figure out how to back everything back out. I'm fairly new to Rails. http://stackoverflow.com/questions/426573/how-do-you-kill-a-process-for-a-particular-user-in-net-c/426618#426618Comment by fr0man on How do you kill a process for a particular user in .NET (C#)?fr0man2009-01-09T00:35:14Z2009-01-09T00:35:14ZAh, nevermind. That's only supported in .NET 2.0 and below. Fixed now. http://stackoverflow.com/questions/426573/how-do-you-kill-a-process-for-a-particular-user-in-net-c/426618#426618Comment by fr0man on How do you kill a process for a particular user in .NET (C#)?fr0man2009-01-09T00:32:17Z2009-01-09T00:32:17ZLooks good, except I can't get VS to recognized ObjectQuery, even with a Using System.Management. This is an area I'm wholly unfamiliar with.