No announcements
Found 814 threads
-
0 Votes
RepeaterCommandEventArgs get related controls
User-1044034148 posted Hi i have a repeater with several textboxes, when the button is clicked for the row in RepeaterCommandEventArgs i need to access the related texboxes ...Answered | 1 Replies | 38 Views | Created by Anonymous - Wednesday, December 8, 2010 9:02 AM | Last reply by Anonymous - Wednesday, December 8, 2010 9:11 AM -
0 Votes
What is the diffrence between the RepeaterCommandEventArgs and RepeaterItemEventArgs
User1876077875 posted Well the difference is that RepeaterCommandEventArgs are used mainly with the ItemCommand event while RepeaterItemEventArgs are used with for example ...Answered | 2 Replies | 78 Views | Created by Anonymous - Tuesday, August 26, 2008 9:01 AM | Last reply by Anonymous - Tuesday, August 26, 2008 11:00 AM -
0 Votes
RepeaterCommandEventArgs
'/> And the VB sub Protected Sub post_edit(ByVal source As Object, ByVal e As ...Answered | 3 Replies | 63 Views | Created by Anonymous - Saturday, May 17, 2008 4:01 PM | Last reply by Anonymous - Saturday, May 17, 2008 7:48 PM -
0 Votes
Item.DataItem in RepeaterCommandEventArgs is null
protected void MyRepeater_ItemCommand(object source, RepeaterCommandEventArgs e) { if ...Answered | 6 Replies | 263 Views | Created by Anonymous - Monday, February 18, 2008 12:53 PM | Last reply by Anonymous - Wednesday, February 20, 2008 11:30 AM -
3 Votes
Highlight a row in repeater control in ItemCommand event
This is ASP.net question that has nothing to do with SQL Server Data Access but I will attempt to reply protected void Repeater1_ItemCommand(object source, ...Answered | 3 Replies | 16674 Views | Created by a.Net fan - Friday, February 26, 2010 1:37 PM | Last reply by paradonym - Friday, April 11, 2014 12:38 PM -
0 Votes
Another OnDataBinding repeater question
User73419333 posted RepeaterCommandEventArgs only applies to the ItemCommand event handler.Answered | 1 Replies | 46 Views | Created by Anonymous - Wednesday, February 4, 2009 3:05 PM | Last reply by Anonymous - Wednesday, February 4, 2009 6:35 PM -
0 Votes
repeater access textbox
User-1635004338 posted Hi craigmacca24, Try this: protected void Repeater1_ItemCommand(object sender, RepeaterCommandEventArgs ...Answered | 3 Replies | 43 Views | Created by Anonymous - Monday, August 2, 2010 6:21 AM | Last reply by Anonymous - Wednesday, August 4, 2010 4:35 AM -
0 Votes
Delete file and dataentry
. :) protected void rptAlbumImages_ItemCommand(object source, RepeaterCommandEventArgs e) { if (e.CommandName == "Delete") { ...Answered | 4 Replies | 33 Views | Created by Anonymous - Friday, July 8, 2011 12:44 PM | Last reply by Anonymous - Saturday, July 9, 2011 7:13 AM -
0 Votes
Source as Object, E as ?????????
User-1463907254 posted ok I have been playing around with trying to remove the postback with no avail if I put the postback if/then around the databind then the updatequantities ...Unanswered | 10 Replies | 16 Views | Created by Anonymous - Wednesday, April 7, 2004 11:26 PM | Last reply by Anonymous - Thursday, April 8, 2004 3:40 PM -
0 Votes
Getting Value Of HiddenField inside Repeater (FindControl)
User-949943812 posted Where did you call the event "rptGMOTalk_ItemCommand(object source, RepeaterCommandEventArgs ...Answered | 5 Replies | 125 Views | Created by Anonymous - Tuesday, May 12, 2009 7:55 AM | Last reply by Anonymous - Friday, May 15, 2009 12:23 AM -
0 Votes
Accessing textbox within repeater on repeater.itemcommand
User232384818 posted This type of access is easy, you can just get to the row your after via the RepeaerItem like this : protected void ...Answered | 3 Replies | 161 Views | Created by Anonymous - Monday, July 21, 2008 2:22 PM | Last reply by Anonymous - Monday, July 21, 2008 3:26 PM -
0 Votes
how can i get buttonID pressed inside an Repeater?
User-774706235 posted Hi agolden protected void repeaterShowComments_ItemCommand(object sender, RepeaterCommandEventArgs e) { Button ...Answered | 3 Replies | 28 Views | Created by Anonymous - Sunday, March 1, 2009 3:53 PM | Last reply by Anonymous - Monday, March 2, 2009 8:14 AM -
0 Votes
Call Repeater ItemCommand event manually from outside the repeater?
User382034655 posted Took me 20mins with baby crying but this works mate For Each tItem In ...Answered | 2 Replies | 45 Views | Created by Anonymous - Tuesday, December 23, 2008 3:16 PM | Last reply by Anonymous - Monday, December 29, 2008 9:31 AM -
0 Votes
Sorting with Repeater control
User-837620913 posted Public Sub SortStuff(source As Object, e As RepeaterCommandEventArgs) If e.CommandName = "NameSort" Then BindGrid() End If End SubUnanswered | 1 Replies | 9 Views | Created by Anonymous - Tuesday, June 8, 2004 8:34 AM | Last reply by Anonymous - Tuesday, June 8, 2004 2:58 PM -
0 Votes
anyone ever have a problem with OnItemCommand??
Try the other approach and change your code to the following: Public Sub rptSort_ItemCommand(ByVal sender As Object, ByVal e As ...Unanswered | 2 Replies | 12 Views | Created by Anonymous - Saturday, April 23, 2005 11:40 PM | Last reply by Anonymous - Sunday, April 24, 2005 7:42 PM -
0 Votes
OnItemCommand does fire up in ASP .Net
Check following in .aspx file OnItemCommand="Repeater1_ItemCommand" in the code behind there should be ...Unanswered | 1 Replies | 9 Views | Created by Anonymous - Wednesday, September 28, 2005 6:03 PM | Last reply by Anonymous - Thursday, September 29, 2005 8:40 AM -
0 Votes
Event for Repeater in FormView
User-294030300 posted Hey, Change: Protected Sub Repeater1_ItemCommand(ByVal source As Object, ByVal e As ...Answered | 2 Replies | 45 Views | Created by Anonymous - Wednesday, January 28, 2009 4:47 AM | Last reply by Anonymous - Wednesday, January 28, 2009 8:03 AM -
0 Votes
repeaterEvent
If you meant to call it and specify your commandname and source,..etc.then you need to create your own eventargument then pass it like ...Answered | 3 Replies | 47 Views | Created by Anonymous - Monday, November 9, 2009 5:17 AM | Last reply by Anonymous - Monday, November 9, 2009 7:33 AM -
0 Votes
Which one is better to pass data to code behind? Either Commandargument or FindControl (usually a hidden field)?
User-473868782 posted I think Second Option is better <asp:Repeater ID="Repeater1" runat="server" ...Answered | 4 Replies | 48 Views | Created by Anonymous - Friday, April 25, 2014 6:12 AM | Last reply by Anonymous - Tuesday, May 6, 2014 6:23 AM -
0 Votes
How to reference Modalpopupextender opened from a repeater control
suppose you have uniquefield in repeater is "UserId" and you can opening it on Edit button of User list repeater than you can ...Unanswered | 3 Replies | 49 Views | Created by Anonymous - Wednesday, January 16, 2013 3:25 PM | Last reply by Anonymous - Thursday, January 17, 2013 3:59 AM - Items 1 to 20 of 814 Next ›
No announcements