Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
114 views

Databound repeater nested in GridView will not update

I have a Repeater nested inside of a GridView. On the RowDataBound event for the GridView, I set the DataSource (based on one of the row's columns) and then bind the Repeater. This works fine for the ...
2
votes
2answers
513 views

Eval and ItemDataBound or RowDataBound event to display data, which one is better?

Which method is better (performance-wise) if I have DataBoundControl such as GridView, Repeater, and/or DataList and I use the following method to display data: Eval("ColumnName") or handling the ...
2
votes
3answers
717 views

How to handle two-way binding of a SqlDataSource on a ASP.NET ListBox

If I have two listboxes, with a button between them, how do I update the Items of ListBox2 if ListBox2's items are databound? <asp:ListBox runat="server" ID="ListBox1" DataSourceID="DataSource1" ...
2
votes
1answer
824 views

Extending a (ASP.NET) BoundField

I would like to create a control that extends the BoundField that's used within a GridView. What I'd like to do is provide another property named HighlightField that will be similar to the DataField ...
2
votes
2answers
342 views

Skipping Items During Data Binding

Greetings! I have a Repeater control that's using an XmlDataSource control. <asp:FormView id="myFormView" runat="server" DataSourceID="myXmlDataSource"> <ItemTemplate> ...
1
vote
7answers
40 views

Databound dropdownlist with a million item

Pls Whats the best method of binding a items from(select COLUMN from TABLE) with a million rows on ASP.NET. What I have now is freezing the ASP.NET page, as the dropdownList tries to populate from ...
1
vote
0answers
124 views

Databound control won't lose focus

I am building a form in which every control databinds to a property of a different class and I have found that there are some controls that simply will not lose focus when I try to leave the control. ...
1
vote
1answer
186 views

Using databound controls to obtain sum from column in related entity in Databound Gridview

I have a gridview that is bound to a datasoure on page load. The datasource is connected to various other database tables, ie. datasourceItem.relatedEntity There is a column in the gridview whose ...
1
vote
1answer
66 views

Generic - Typed CompositeDataBound Control

I have a compositeDatabound control: MyGrid with MyItemTemplate with container of MyContainer. I have a class User. public class MyGrid: CompositeDataBoundControl { ...
1
vote
1answer
140 views

Group data in columns (instead of rows) in an HTML table using data bound control?

Is there a way to group data into columns using a data bound control in ASP.NET? Normally, binding a control to an array of objects, I think of each object as a row. In a typical HTML table, the ...
1
vote
1answer
732 views

Adding Dynamic Image Overlay to Databound Gridview

I am trying to add an image overlay of a cell within a data bound gridview cell in ASP.Net (C#). The effect is designed to have a string within the image that is going to sit on top of the image that ...
1
vote
1answer
579 views

Flex 4 Drop Down List - bound with data service, how to always keep prompt or add item at index -1 programmatically

I have a drop down list that is bound using an HTTP data service from a database (set up through the wizard, not as a declaration). My drop down list changes the values in my datagrid and I need that ...
1
vote
1answer
78 views

Designer problem with CompositeDataBoundControl

I have a custom class: SimpleTemplatedControl : CompositeDataBoundControl private ITemplate _itemTemplate; [PersistenceMode(PersistenceMode.InnerProperty), ...
1
vote
1answer
157 views

HierarchicalDataBoundControl.PerformDataBinding not being called on postback

The title says it all. I am binding to a SiteMapDataSource (hierarchical). I am overriding PerformDataBinding to grab the data from the datasource. Everything works great on page load. But when I ...
1
vote
0answers
240 views

Dynamic controls in databound control

I have a control that inherits CompositeDataBoundControl. Based on the values of the bound data, I create som dynamic controls. In order to preserve state, I need to recreate the control tree on every ...
1
vote
2answers
2k views

WPF - Unable to clear items from a databound itemscontrol

I've created a combobox and have bound it to an observableCollection. Something like myCmbBox.ItemsSource = myObsCollObj My scenario is onLoad of the application I shall populate my ...
1
vote
4answers
6k views

ASP.NET: Bind Repeater using JQuery?

I have a Repeater control that I bind server-side. It repeats a series of divs, and does so with no problem. I have some buttons that I use to sort the repeater (newest, highest ranked, random) and ...
0
votes
1answer
41 views

Asp.Net Databound and Sessions Conditional Logic

Hello There I'm trying to set the visibility of button in list view item template based on the session object and databound property <asp:Button ID="deleteCommentButton" runat="server" ...
0
votes
1answer
56 views

Repeated code in databound controls

I'm sure I'm missing something obvious here. I have a about twenty data-bound GridViews, each of which share some common features. Let's say they're all lists of people, and every one starts with ...
0
votes
3answers
143 views

Bind data without database call on page load

I'm trying to find a best practice for getting values for a databound control. The way my application works now (and usually) is on page load I call a getSettings() or something and that makes a ...
0
votes
2answers
33 views

Looking for suitable DataBound control to implement questions page

I looking forward to find a suitable asp.net DataBound control (C#) to implement in my application. I wanted to create a exam page where each page show 10 questions, each question got a Label control ...
0
votes
0answers
284 views

datatable bound combobox. set selected value at runtime with correct display

I have two comboboxes on a windows form written in vb. I use this code to populate and bind one of my combobox. Private Sub GetResyncActions() Dim sql As String = "Select Action, ...
0
votes
0answers
31 views

Working with attributes in dataitems in repeaters

My Web.sitemap <?xml version="1.0" encoding="utf-8" ?> <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode url="~/Home.aspx" title="home" ...
0
votes
0answers
19 views

Numeric format - Actual vs Displayed

I have a textbox control bound to a SQL field defined as decimal(18,10). I need all of the decimals for my calculations, but I want to display only 4 decimal places. I've seen several formatting ...
0
votes
0answers
187 views

ASP.NET 4.0 - What's missing in this (so called) databound UserControl?

I never got this together. Gladly there was MVC to help me out, however I'm forced to use WebForms again today... I'm trying to create a templated databound user control. Usage (on page.aspx) and ...
0
votes
2answers
543 views

VB6 and data-bound MSHFlexGrid, moving and populating columns

I'm working on a VB6 program that connects to a SQL Server 2008 R2 database. In the past I have always used the MSFlexGrid control and populated it manually. Now, however, the guy who is paying me ...
0
votes
2answers
34 views

In what point a Repeater differs from DataList web-server control?

They are both data bound controls. They both have template related features. Can you explain in what point Repeater differs from DataList web-server control? And when one should be picked to be used? ...
0
votes
1answer
178 views

Databound controls with null value being rendered

Although I'm a huge fan of Databound controls since ASP.Net 2.0 and have been using them a lot since learning them, I seem to have stumbled upon an unnoticed(or rather not cared about) issue that ...
0
votes
0answers
120 views

can we bind dropdownlist or any other control in class

i want to make my code reuse-able so i want i code once only in class file to bind all data bound controls and then call according to situation . means if i would like to bind datalist i just use ...
0
votes
0answers
386 views

How To Bind Gridview Without Using Any Dataset, Datatable?

can you bind a gridview without using dataset and datatable? and one thing more can you bind a gridview with database through html file only?
0
votes
1answer
77 views

What is the equivalent to EditItemIndex of DataList in a ListView control?

Acutallly I want to fire item editing events. But how do I find the control? I mean to say as we find the control in edititem event of DataList using EditItemIndex. What is the equivalent to ...
0
votes
1answer
223 views

Modifying control with javascript - Invalid postback or callback argument

I have a a dropdown on a page <asp:DropDownList ID="drpName" AutoPostBack="true" AppendDataBoundItems="true" runat="server" ></asp:DropDownList> and I on ...
0
votes
1answer
270 views

WPF background worker need a dispatcher for bound data

I have all my data bound from WPF controls to properties in an object that my Window can access. When I run a backgroundworker thread, do I need a dispatcher to access these underlying properties, or ...
0
votes
2answers
97 views

Which Control can is equvalent to databound list combox box of vb6 in vb.net windows form application

I think there should a control like databound list control of vb6 in vb.net windows form application too which can show up data from database. I have confused and staring my database applications in ...
0
votes
1answer
687 views

Data Bound listbox selectedindex always -1

I've got a simple upload form. Here's my code: <form id="Form1" method="post" enctype="multipart/form-data" runat="server" <asp:label id="lblMsg" runat="server" CssClass="msg" /> ...
0
votes
4answers
4k views

ASP.NET - Ideal Control to Display a Pivot Table

I am trying to display a tabular set of data in a databound control, but I need to pivot the table such that the individual records are table columns rather than table rows. The end result is a table ...
0
votes
2answers
432 views

Is there a way to bind textboxes in a webform so the data is save as the user types in?

I have in my webform many TBs bound to a property in the code behind: <asp:TextBox ID="tbFirstName" Text="<%# Contact.FirstName %>" runat="server" /> <script language="c#"> ...
0
votes
1answer
1k views

How to get parent GridView's data-bound value

<asp:GridView DataSource="Reports"> <ItemTemplate> <asp:TextBox Text='<%# Bind("ReportId") %>' <asp:Repeater DataSource="Something that is different than ...
0
votes
1answer
547 views

Data Grid DataFormatString formatting not working

I came accross an issue a few days ago which I'd completely forgotten about, and noticed it wasn't mentioned on SO. In an ASP.Net document, a datagrid was created dynamically as part of a business ...
0
votes
1answer
1k views

How do I create a nested GridView bound to parent's EntityDataSource's navigation property?

<asp:FormView DataSourceId="edsAccounts"> <ItemTemplate> <asp:TextBox Text='<%# Eval("Email") %>' /> <asp:DataGrid ID="dgReports" DataSource='<%# ...
0
votes
4answers
5k views

How can I get a bound control's client ID with javascript and/or server-side tags?

<asp:DataGrid> <ItemTemplate> 1) <asp:TextBox ID="tbComments" onChange="javascript:checkLength(<%# tbComments.ClientId %>);" runat="server"/> 2) ...
0
votes
1answer
231 views

How can I access the parent datasource in data expression syntax in Asp.net?

I have a Repeater inside the TemplateField for a GridView. GridView is bound to datasource1 and the repeater to datasource2. How can i access datasource1 from the ItemTemplate of repeater in data ...