Blog Home  Home Feed your aggregator (RSS 2.0)  
kevin Mocha - Tuesday, August 12, 2008
Bookmarks collected from web.
 
 Tuesday, August 12, 2008

http://www.c-sharpcorner.com/UploadFile/nagryum/Appdomain07102007081415AM/Appdomain.aspx

Advantages

A single CLR operating system process can contain multiple application domains. There are advantages to having application domains within a single process.

  1. Lower system cost - many application domains can be contained within a single system process.

  2. Each application domain can have different security access levels assigned to them, all within a single process.

  3. Code in one AppDomain cannot directly access code in another AppDomain.

  4. The application in an AppDomain can be stopped without affecting the state of another AppDomain running in the same process.

  5. An  Exception in on AppDomain will not affect other AppDomains or crash the entire process that hosts the AppDomains.

Tuesday, August 12, 2008 2:27:11 PM UTC  #    Comments [0]    |  Trackback
 Thursday, August 07, 2008
 Monday, August 04, 2008
 Friday, August 01, 2008

http://www.15seconds.com/issue/020417.htm

ASP.NET request processing is based on a pipeline model in which ASP.NET passes http requests to all the modules in the pipeline. Each module receives the http request and has full control over it. The module can play with the request in any way it sees fit. Once the request passes through all of the HTTP modules, it is eventually served by an HTTP handler. The HTTP handler performs some processing on it, and the result again passes through the HTTP modules in the pipeline.

Notice that during the processing of an http request, only one HTTP handler will be called, whereas more than one HTTP modules can be called.

Friday, August 01, 2008 2:27:51 PM UTC  #    Comments [0]    |  Trackback
 Wednesday, July 30, 2008
 Friday, July 18, 2008
 Wednesday, July 16, 2008

To solve this, we have to manually add the mouse event handler onto the controls and set the handled parameter to true.

this.tbId.AddHandler(TextBox.MouseDownEvent, new RoutedEventHandler(tb_mouseDown), true);

Wednesday, July 16, 2008 10:06:03 PM UTC  #    Comments [0]    |  Trackback

_strandGroup = this.listViewGroups.SelectedItem as StrandGroup;

Wednesday, July 16, 2008 2:33:50 PM UTC  #    Comments [0]    |  Trackback

<GridViewColumn Header="Strand Type">
     <GridViewColumn.CellTemplate>
             <DataTemplate>
                    <ComboBox SelectedValue="{Binding Path=StrandId}" SelectedValuePath="Id" DisplayMemberPath="Name" Width="120" GotFocus="ComboBox_GotFocus" SelectionChanged="ComboBoxStrandType_SelectionChanged"
                                            ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type local:LongitudinalStrandGroupsAssist}}, Path=MPrestressedStrands}"/>
             <DataTemplate>
     </GridViewColumn.CellTemplate>
</GridViewColumn>

Wednesday, July 16, 2008 2:32:24 PM UTC  #    Comments [0]    |  Trackback
 Tuesday, July 15, 2008
Copyright © 2009 Kevin Mocha. All rights reserved.
DasBlog 'Portal' theme by Johnny Hughes.
Pick a theme: