C# - Changing Repeater DataSource When There Are No Items?

Apr 19, 2009

I want to place a image with the text "NO IMAGE" in my Repeater when there is no image.What changes must i make in order to achieve this? I want my Repeater datasource to point to an image inside my IMAGE folder in my root directory.

[Code]...

View 1 Replies


ADVERTISEMENT

.net - ASP.NET Repeater Datasource Bound To A Function?

Apr 28, 2010

In the code behind I have a function that returns a List(Of SomeClass):

rptRepeater.DataSource = SomeFunction(SomeVariable)
rptRepeater.DataBind()

In the html I have a basic repeater layout and am using the below code to get the Properties of each object returned.

<%#Databinder.Eval(Container.DataItem, "Parameter1")%>

My question is, would there ever be a case that it would execute the Function more than once?

View 1 Replies

Access Objects I've Assigned To Repeater.DataSource?

Jul 15, 2011

I have a Repeater Control which I bind to a list of Products

Repeater.DataSource = ProductRepository.GetProducts();

Later (in another module), I need to retrieve the products from the Repeater, but it seems not to work with Repeater.Item.DataItem (which is then null).

My question is, is there any reference to the products in the Repeater-Items? Or do I have to set it myself via id field etc. What would be the easiest way to get the "underlying" product objects?

View 4 Replies

Asp.net - Arraylist As Repeater Datasource (access From .aspx)?

Apr 16, 2010

I have an arraylist:

[Code]...

I know how to use <%#Container.DataItem%> to dump everything but I need to get at the items in the array individually, not have them all ditched out to the page in one go. For example, item 1 contains a link, item 2 contains an image path, item 3 contains a description. I need to have them kick out in the correct order to build the link and icon correctly.

View 3 Replies

Repeater Simple Data Binding Without Datasource?

May 31, 2009

Im a ASP.NET beginner. I previously asked how to do some databinding to a repeater without a datasourse.

[Code]...

View 1 Replies

Asp.net - Changing An Asp:label Text Inside A Repeater

Aug 16, 2011

I have this label inside a repeater <asp:Label id="lblsub" runat=server text="sdds" /> I am trying to change the text of this label,this is the code behind

[Code]...

unfortunately this code doesn't work for me ,the text value doesn't change,

View 2 Replies

C# - Changing Label On Linkbutton Click Inside Repeater?

May 18, 2012

I am using an asp.net repeater in my asp.net page like this:

<asp:Repeater ID="Repeater1" runat="server">
<ItemTemplate>
<asp:Label ID="lblsSICCode" runat="server" Text='<%# Eval("sSICCode") %>'></asp:Label>

[Code]....

View 1 Replies

Asp.net - Changing Repeater Label On Treeview Selected Node Change?

May 21, 2012

I have a repeater control with item template like this:

<ItemTemplate>
<table width="70%">
<tr id="rowSIC" runat="server">
<td width="10%">

[code]....

I have a treeview on this page of which each node has and Id and value. on selected node change event, I want to change the text of repeater selected node. I am writing code like this:

Protected Sub TreeView1_SelectedNodeChanged(sender As Object, e As System.EventArgs) Handles TreeView1.SelectedNodeChanged
Dim EmployeeRepeater As Repeater = CType(Me.Form.Controls(1).FindControl("Repeater1"), Repeater)
Dim EmployeeRepeaterItem As RepeaterItem

[code]....

But It is not chagging MyLabel text. How to fix it ? Both treeview and repeater are populated in !Page.Ispostback event?

View 1 Replies

DB/Reporting :: Changing Datagrid Datasource Using Dropdown?

Mar 27, 2008

I'm trying to make my datagrids datasource change when you select a particular item from a drop down menu but all I get is blank cells! any ideas? I don't think it is changing the colums property automatically either.

If chooseType.Text = "Add / Edit Players" Then
updateDB.DataSource = PlayersBindingSource

[code].....

View 1 Replies

Asp.net: Iterating Over Multiple Repeater.items Collections?

Apr 1, 2011

I have a number of idential repeaters, and I need to iterate through all of the items. I currently have:

For Each item In rpt1.Items
.do some stuff
Next[code]....

Is there a simple way to reduce this to a single For Each ... Next loop?

Edit: There are a number of local vars involved in "do some stuff", which is why I can't just pass the item into a function - the call would have to include about 8 ByRef params.

View 3 Replies

VS 2008 Changing The Datasource So That Application Will Run On A Machine With No Network?

Oct 14, 2009

I have created an application which uses an sql server connection as its datasource. The problem I'm having is that the application needs to work on computer that has no network connection. How Can i change the datasource so that on runtime it can work off a machine that is not connected to a network? The datasource from the sql connection only contains one table with no data. It only needs to be updated with a target folder that can be changed to any location on any computer already written in the code.

The connection string suddenly stands as: Dim MyConnectionString As String = "Data Source=MY-PC;Initial Catalog=ImageLocs;User Id=test;Password=test;Pooling=False"

View 5 Replies

Won't Combo Boxes Update Correctly When Changing Datasource In Windows Forms (VB)?

Sep 27, 2009

In a windows forms project, I have several combo boxes. The first combo box contains a list of objects. Those objects then have several lists which are used as the datasource's for the successive combo boxes, depending on which item is chosen in the first.

[Code]...

View 1 Replies

Add Items To Listbox By Datasource?

Jun 19, 2009

add items to listbox by datasource

View 3 Replies

Adding Items To ComboBox Even If It Already Has Datasource?

Jun 2, 2011

I have to add item "Final Grade" to my cboQuarter. The thing is, my cboQuarter already has a datasource and I can't add the item "Final Grade" during drop-down. The error says, "cannot modify or insert (can't remember word by word) when it already has a datasource."

View 4 Replies

VS 2008 Can't Get Items From A Listbox With Datasource

Dec 25, 2009

i import into a list box data from a db. when i try to save listbox it save this text

System.Data.DataRowView

instead text of single item...

how i can get the real text of each item?

View 3 Replies

Asp.net - Access A Gridview Inside A Repeater Which Is Inside A Repeater (Nested Repeater)?

Apr 11, 2012

How can I access rep_DataSimilarToBacthid ? I need to bind the GridView and call GridView RowDataBound or InitializeRow

[Code]...

I am using VB.Net with Framework Version 2.0.

View 1 Replies

Items Collection Cannot Be Modified When DataSource Property Is Set

Apr 27, 2010

I am trying to refresh my combobox when an item is selected and added the highlighted code as shown below; [code]Items collection cannot be modified when the DataSource property is set.

View 3 Replies

Removing Items From A List Box After Setting The DataSource

Sep 29, 2010

I have a small requirement and that is as follows:

I am populating a ListBox using stored procedures and the ListBox is populated as follows:

lstItems.DisplayMember = "emp_name"
lstItems.ValueMember = "login_id"
lstItems.DataSource = accessFunction.getEmployees

The ListBox gets populated correctly. After it is populated, i have a CommandButton and on the click event of the button, i want to remove selected items from the ListBox. So in the click event of the CommandButton, i have written the following code:

lstItems.Items.Remove(lstItems.SelectedItem)

After selecting an item from the ListBox and when i click the CommandButton, i get an error as "Items collection cannot be modified when the DataSource property is set".

how i can delete items from the ListBox.

View 2 Replies

"Items Collection Cannot Be Modified When The DataSource Property Is Set?

Jun 17, 2010

I have a combobobox on my form, and I use the following code to populate the data from SQL Server:

cbname.DataSource = DSAssetName.Tables(0)
cbname.DisplayMember = "IDWLNAME"
cbname.ValueMember = "FIDWID"

[code].....

View 2 Replies

Asp.net - When Using Datasource And Databind To Set Items In A Dropdownlist - Index Is Always The Value Of First Item

Jan 18, 2012

I am trying to use datasource and bind in my application to set a dropdown list to the results of a query. The dropdownlist populates correctly (shows each different type_name in the set) but later when I use ddltype.selectedvalue - I am always getting the value from the first item in the dataset. Here is the code.

[Code]...

View 1 Replies

VS 2008 Items Collection Cannot Be Modified When The DataSource Property Is Set

Feb 13, 2010

I have two tables "Person" and "Alias" in a one to many relationship. I have a DGV for "Person" and want to use a combobox for the Aliases. I also have a textbox and a button for the user to type the alias name and click the button to add the alias name to the combobox and update the dataset. I keep getting the "Items collection cannot be modified when the DataSource property is set." Error. But if i use a DGV instead of a combobox for aliases, I have no errors and everything works fine. If I remove the datasource property for the combobox it will not get populated with the data already entered, so how, or can I, set it up where the combobox gets populated when the form loads and able to add items to the combobox????

View 1 Replies

VS 2010 Items Collection Cannot Be Modified When The DataSource Property Is Set?

Aug 26, 2011

Like i want it to read the lines i have in the text file but i get an error Each time i press the button Why?

Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
Dim objreader As New System.IO.StreamReader("C:UsersJamesDesktopMusicas.txt")
Do Until objreader.EndOfStream

[code]....

Error:

Quote:

Items collection cannot be modified when the DataSource property is set.

Error line

Quote:

ListBox1.Items.Add(objreader)

View 7 Replies

Asp.net - Nested Repeater Show Data That Matches Parent Repeater

Mar 15, 2011

I am using a repeater to build a custom table. However, I can't figure out how to make the table show subtotal if the next rows tour does not match the previous rows.

Something similar to that.

row1 tour1
row2 tour 1
tour1 subtotal

[Code].....

but this shows all the data in the nested repeater not the ones that match the parentrepeater fields for example tour,theme,dep7 should match in the child repeater

View 1 Replies

Rebind Repeater Using Next / Previous Buttons In The ItemTemplate Of The Same Repeater?

Mar 27, 2009

I have a parent repeater with nested repeaters.My problem is I am trying to use 'Next' and 'Previous' buttons to rebind my repeater (rptTabContent) and thus the inner repeaters also, but when I try to manipulate the state of these links during the ItemCommand event they are overwritten by the bind.

View 1 Replies

Asp.net - Crystal Reports: "Failed To Save Document" After Changing Datasource

Mar 29, 2010

I have about 15 .RPT files on my .NET 2.0 site, and I recently changed to a new database server.I successfully changed the Datasource on 14 of those .RPT files, but on one, after making the change, I get "Failed to Save Document" when I try to save the updated report. I can change the subreport's Datasource, and save it just fine, but when I try to change the main report's Datasource I get that error message.I'm definitely doing a "Verify Database" at various times throughout the process, but that doesn't seem to help.

View 2 Replies

Listbox And Changing Items?

Mar 4, 2010

I am looking for a way (or an event) that works whenever I add or remove an item from a listbox. I was looking through the events and will give the textchanged event a try, but was hoping for something like a collectionchanged or itemschanged event?

View 3 Replies

Changing Items In Listview From Another Window?

Feb 19, 2010

How do i change the values inside a listview after inputing some values from another window. The window with the list view doesn't close. There is a button where you can open another window that will store a value in a variable. then after closing the 2nd window, (ok button) how will the value appear?

View 2 Replies

VS 2008 Changing Combo Items On The Fly?

Oct 18, 2011

I have two combo boxes. box1 and box2 both on same form. Depending on what is selected in box1 will determin the items in box2. I would like box2 to change in real time (not pressing a button!)

Whats the best way to do this? use a timer on the form with lots of if else (or case) statments?

View 3 Replies

Changing Items Shown In Explorer Combobox Of File Dialogs?

Jan 13, 2010

In my dialog I want to prevent the user to browse freely in certain places (this is due to the fact that my application will be running in a terminal server environment). So I want to to limit the items that will be visible in the top combobox of the server. I want it to start with "My Computer" instead of the usual "Desktop". Furthermore I only want to add mapped network drives under "My Computer" so that the user won't be able to see any local resources.With Spy++ I have been looking around at what happens when a FileDialog starts.

So far I have found that for each item in the combobox CB_SETITEMDATA and CB_INSERTSTRING methods are executed. By using a hook to the combobox I am able to intercept these messages, but sofar I am unable to determine the exact contents of what is inserted, so I am unable to determine wether it is the "Desktop" item or not.I have also discovered that the "My Computer" node is only added at the moment that the combobox is expanded. So I would need a way to get a handle to "My Computer" and insert an item for it manually

View 5 Replies

Changing Menu Strip Items From Open File Dialog1

Aug 31, 2009

I am making a program that is in need of labels changing and showing depending on what the user clicks on a file Dialog.

Everything works fine except for that when I change the labels, it uses the entire file path, and I ONLY want the file name. How would I be able to get JUST the file name?

[code....]

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved