User Profile

Collapse

Profile Sidebar

Collapse
vellor
vellor
Last Activity: Jul 25 '12, 01:21 PM
Joined: Feb 2 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • vellor
    started a topic UserControl causes full postback

    UserControl causes full postback

    Hi!
    I have Placeholder within Update panel. On Page_Load i load user contol via this code:

    Code:
    Control ctrl = LoadControl("~/UserControls/ListViewThumbs.ascx");
                                ucThumbs = (ListViewThumbs)ctrl;
                                ucThumbs.ID = "ucThumbs";
    
    
                                ucThumbs.SelectedIndexChanged += new UserControlSelectedIndexChanged(listView_SelectedIndexChanging);
    ...
    See more | Go to post

  • How to call update pane refreshing by list view row click

    Hi!
    I have ListView with such markup:

    Code:
    <asp:UpdatePanel ID="updateMyDocs" UpdateMode = "Always" runat="server">
            <ContentTemplate>
    <asp:ListView ID="dataViewFiles" ItemPlaceholderID="itemPlaceholder" runat="server"
                                                   DataKeyNames="Id" OnItemDataBound="dataViewFiles_ItemDataBound"
    ...
    See more | Go to post

  • vellor
    started a topic Which transaction isolation level should i use?
    in .NET

    Which transaction isolation level should i use?

    My DAL is written in LINQ. I need to wrap some parts of code in transactions. i want to have opportunity to do queries on table while transaction is running.But also i don't want to have problems with dirty reads. Which isolation level should i use?
    See more | Go to post
No activity results to display
Show More
Working...