Search Results

3
votes

Programmatically Select Item in Asp.Net ListView

I looked at some of what's going on in ListView under the hood and think this is probably the best approach. void listView_ItemCreated(object sender, ListViewItemEventArgs e) { // …
0
votes

Dynamically reducing image dimension as well as image size in C#

You could try either of these 2 projects on CodePlex.com, both offer dynamic image generation with caching. …
1
vote

ASP.NET Gridview with all records editable.

I would be inclined to use the ListView personally for this, since you can insert Rows with it. Your LayoutTemplate would be a table with a <tr runat="server" ID="itemPlaceHolder" /> in it. Y …
1
vote

ASP.Net Persisting Data Across the Application

You can change the Session State Server to not be in process which will make it far more stable and also seperate it from the worker process (You'll need to be able to start the Asp.NET State Servi …
0
votes

asp.net - sqldatasource - detailsview - use stored proc to insert record

I think you may be missing SqlDataSource1.InsertCommandType = CommandType.StoredProcedure …
3
votes

VS 2005 Web Site Project Template Annoyance.

You'll likely find it registered in web.config (system.web>pages>controls i believe). You can globaly register controls there just as you would on the page. <pages> <cont …
3
votes

What is the best method for changing a web.config connectionstring at runtime?

If you are not wanting to delve into code behind, there is another way you can do this. First read this article on …
2
votes

Pre render event in asp.net

PreRender is the event that takes place just before the HTML for a given control/page is generated (to later be sent to the browser). So by setting an item.Visible = false here it will not be rende …
2
votes

One user control updating another during AJAX Postback?

I don't think there's really enough information to work with here, but my best guess is that the Product control is not getting data bound. You may try calling myProdcutsCtrl.DataBind() from the se …
0
votes

How to pass in custom event args to the standard asp:controls

I don't thinks you can. The Button itself will be calling the Click event with it's own EventArgs object, and unfortunately you can't hijack that call. You can however use closures: …
0
votes

asp:DropDownList Error: ‘DropDownList1’ has a SelectedValue which is invalid because it does not exist in the list of items.

I've become very fond of the following little snippet for setting DropDownList values: For non-DataBound (eg Items added manually): ddl.SelectedIndex = ddl. …
1
vote

Master Page Weirdness - “Content controls have to be top-level controls in a content page or a nested master page that references a master page.”

Your we form should look like this: <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebUI._Default" MasterPageFile="~/Site1.Master" %> &l …
0
votes

Getting dynamically generated HTML controls when using UpdatePanel

Question: Does this programming exist inside a MasterPage or UserControl or any other control that implements INamingContainer? Check your renedered HTML and make sure …