Forms Data Controls :: Retrieve A Selected Field In A Repeater?
Apr 11, 2010
I'm trying to retrieve the value of the "ListName" field that was clicked in the repeater but I'm getting null ("") in "ListTitle", please could someone correct my code:
Protected Sub repTriggers_ItemCommand(ByVal sender As Object, ByVal e As RepeaterCommandEventArgs)
Dim ListTitle As String
If e.CommandName = "trigger" Then
ListTitle = CType(e.Item.FindControl("lnkTrigger"), LinkButton).Text
[Code]....
View 1 Replies
Similar Messages:
Jul 12, 2010
I have repeater in which I have 2 hyperlink in the footer of the repeater and I want that the hyperlink can navigate from the page_load
View 2 Replies
Jan 4, 2011
am using C# .net.. in my page am having nested repeater control.. in child repeater there is check box and a hidden ID. i want to store(here am get strucked) the ID of checked box in to my data base.. look at the below code..
HTML page....
[Code]....
View 2 Replies
Jul 15, 2010
I'm having a problem trying to retrieve a dropdownlist value that is located within a nested repeater. Basically I'm trying to create a shopping cart that allows the user to select a shipping method and the shipping method is contained in the repeater. So my page structure looks something like this.
Gridview
[Code]....
To me this should work, but the problem I'm facing is that there are no repeater items. The Items.Count property in the repeater is 0. I am not calling DataBind on the Gridview nor the Repeater before this code is reached (this code is the first thing that happens in my button click event) and my binding is done inside a !IsPostBack statement in my page load. I've made sure databinding is not occurring by setting breakpoints on the code that databinds both the gridview and repeater.
It seems to me like the nested repeater is losing it's viewstate or something on a postback. If that's the case, how can I get the selected value of that dropdown control inside a nested repeater?
View 1 Replies
Jun 24, 2010
how I access /retrieve values of checkboxlist inside a repeater? My code is below..is it the same as if it was not inside a repeater? My other concern is how do I distinguish these checkboxes because basically what 's going to happen here is based on which checkbox is selected I need to query an xml file to get the location of a folder which I'm then going to zip up and allow user to download..So here's the breakdown. I have an accordion panel using jquery ui. Each panel hold a product and each product has the same checkboxes..so depending on which product the user wants to download files for which he/she will indicate by opening the accordion panel for that product and checking which checkboxes/file they want to download . So how will I know which product the user clicked the checkboxes for being that I'm using this repeater which just one ID?
[Code]....
can I still use this code or will it not work cause it's inside a repeater..also I was going to use jquery to add an onclick event to the checkbox so how can I do that now with me using this control?
[Code]....
Here's another issue..I can't even assign values to the checkboxlist using databinding..so how am I suppose to do this.. Server Error in '/ArchitectView' Application. Parser Error Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. Parser Error Message: Databinding expressions are only supported on objects that have a DataBinding event. System.Web.UI.WebControls.ListItem does not have a DataBinding event.Source Error:
[Code]....
View 6 Replies
Jan 29, 2010
I have a ReportViewer control on my aspx page that displays a report defined in an rdlc file. The rdlc has a textbox for displaying the number of rows on the report (using the =Count function).
I am looking for a way to retrieve the value of this textbox in my code-behind.
View 3 Replies
Jan 24, 2010
how to get the selected value from a DropDownList in a Repeater
Here is the code
ASPX
[Code]....
ASPX.CS
[Code]....
I am having trouble with this part. Object not reference to an object.
[Code]....
View 8 Replies
Nov 28, 2010
i use div and repeater to show categories for searching part. there is a div. when iclick it, repeater opens and if i select a category its name shows on div. this part is ok. Now i do searcing. so i have to take the span's value(or repeater's value).
View 2 Replies
May 10, 2010
I have a listview that is retrieving some values from a database and showing them. The information are; product name, price, etc. At the end of each row, I have a textbox and a button. Within the textbox the user is able to insert how many items he wants of that particular item and by clicking the button I want the value from the textbox retrieved. It may be relevant to mention that
with the button is a event attached (OnClick) which is where I want the value of the textbox to be retrieved. The part that is giving me problem is retrieving the textbox value for that specific row when the button is clicked.
View 5 Replies
Dec 21, 2010
how to get Radiobuttonlist selected value in a repeater
View 1 Replies
Jan 14, 2010
How can I format my date field like this "Jan 6 @ 7:42 AM" from my date field. My present date field is in this format "1/6/2010 7:42:00 AM".
I am using this in my repeater control.
View 2 Replies
May 23, 2010
I am trying to retrieve Detailsview records filtered by dropdownlist which is populated within Detailsview template.
not sure if this is possible but,
i have three cascading dropdownlists within the detailsview and want to set the third dropdownlist value and dependant dropdownlist values according to retrieved record.
at moment they cascade values independant of what record set is retrieved in detailsview and obtain there parameter from selected dropdownlist in pagebehind.
below is select statement bound to Detailsview and itemtemplate for third Dropdownlist control
[Code].....
View 14 Replies
Mar 16, 2010
i am still stumped with this operation: i am trying to retrieve a GridView selected row data..here is my code.. the commented part that gives me the selectedindex works just fine....but the one giving the selected row cell value does't work and there is no error.. The update operation is done successfully...weired. i need to assigned selected row cells values to variables ..do some calculations and then re-assign the result calculation to cell[9]..
protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
string s = GridView1.SelectedRow.Cells[5].Text;
TextBox1.Text = s.ToString();
//string s2 = GridView1.SelectedIndex.ToString();
//TextBox1.Text = s2.ToString();
}
View 5 Replies
Apr 30, 2010
I have an a-z menu in an asp.net repeater. I'd like to highlight the currently selected link. I tried the following code in the itemdatabound but it does not work.
[Code]....
The reason is because the urls are not rendered at this point so they look like: ~/folder- ame/page.aspx?az=B.
View 1 Replies
Jun 14, 2010
I'm doing property booking based project.
I have repeater control for search results.
For every search result I create a dropdown list with 2 month booking overview.
<ddl>
<item value = "1"> January - February </item>
<item value = "2"> February - March </item>
etc.
Then I call function to generate 2 months calendar view, which has two parameters generate(startmonth as Integer, sku as string)
Everything works when I hardcode starmonth as some integer.
I spent all day with no progress on how to pass value. I need a guide. I guess second problem will be to restore changed dropdown values on Postback, but one step at a time.
But what I want to do, to pass selected item value, to function, that would change view for property associated with this dropdown.
View 2 Replies
Jan 26, 2011
nested repeater like this:
<asp:Repeater ID="repeaterReportListByJob" runat="server" DataSource='<%# GetReportsByJobNID(Eval(Container.DataItem, "JobNID")) %>'>
It seems my Eval(Container.DataItem, "JobNID") is not working and I assume this is because the datasource of the outer (parent) repeater is an anonymous type. So how am I supposed to access a particular field of my anonymous type?
View 7 Replies
Aug 20, 2010
I have repeator control that is bind to a datareader.
[Code]....
Now here the Aritcle field contain text that include the html tags as well.
What i want is to display 100 characters from it, along with more href link at the end.
View 4 Replies
Mar 19, 2011
How do I text the string length of a field value in a repearter.
<asp:HyperLink ID="hypName12" runat="server" Visible='<%# (Convert.ToString(Eval("L_Name")) Length > 5 ) %>' ImageUrl="~/name12.gif" NavigateUrl='<%#
"http://" + Eval("L_Name") %>' Target="_blank" ></asp:HyperLink>
View 2 Replies
Jun 28, 2010
I have a repeater control and inseid it's ItemTemplate and AlternateItemTemplate, I have the following code (toy code):
[Code]....
The problem is, when I click the button it shows a '*' in front of every textbox in odd or even items, instead of validating only the textbox in that item.
How can I validate only the text box inside the item in which the button being clicked resides?
View 2 Replies
May 11, 2010
how to retrieve data from gridview on row selectindexchanged??
View 12 Replies
Sep 22, 2010
i wanat to display Client Name, Field and image in datalist. Stored Procedure like this
ALTER proc [dbo].[get_clients_services]
View 2 Replies
Dec 6, 2010
im having a quizz (a question and multiple answer related to the question) , i use an asp repeater to display the questionand a nested radiobuttonlist inside the item template for the related answer:
[Code]....
I do bind the the radiobutton on itemDatabound, i need to store the answer selected by the user, for that i used the following method:
[Code]....
but the rptAns referring to the radiobuttonlist (there is only one quiz at a time), the selectedindex always remain at the first index even when the user does change the selected radio button.i have made a check when on item databound to see if the page is a postback before opulating the radiobuttonlist.
View 3 Replies
Feb 12, 2010
I have the following ItemTemplate in Repeater1
[code]....
How do I insert the value of ListID into the query string?
View 6 Replies
Jan 16, 2010
I have a gridview:
<asp:GridView ID="multiGrid" PageSize="20" AllowSorting="True" AllowPaging="True"
runat="server" DataSourceID="SqlDataSource1" DataKeyNames="id" AutoGenerateColumns="true"
AutoGenerateSelectButton="true" RowStyle-BackColor="LightGray" AutoGenerateEditButton="false"
CellPadding="5" CellSpacing="10" AlternatingRowStyle-BackColor="white" HeaderStyle-BackColor="#122C77"
HeaderStyle-ForeColor="white" ForeColor="black" PagerStyle-ForeColor="#1A7A5E">
</asp:GridView>
I need to find the value of the id field when I select a row.......
View 4 Replies
Dec 29, 2010
I have a user control (this has a label to display question and a radio button list to show options).
I am using this user control inside a repeater to display all the questions with their options.
In my repeater page I am not able to capture SelectedValue of radio button list.
protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e)
View 4 Replies