Click here to Skip to main content
15,916,835 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionSys.WebForms.PageRequestManagerParserErrorException Pin
pmartike15-Jan-09 6:04
pmartike15-Jan-09 6:04 
AnswerRe: Sys.WebForms.PageRequestManagerParserErrorException Pin
CoolFire4eva19-Feb-09 17:35
CoolFire4eva19-Feb-09 17:35 
QuestionProcedure and Codebehind Problem Pin
monika_vasvani15-Jan-09 5:55
monika_vasvani15-Jan-09 5:55 
Answer[Formatting] Procedure and Codebehind Problem Pin
Scott Dorman15-Jan-09 6:20
professionalScott Dorman15-Jan-09 6:20 
AnswerRe: Procedure and Codebehind Problem Pin
Scott Dorman15-Jan-09 6:24
professionalScott Dorman15-Jan-09 6:24 
Questiononselectedindexchanged Pin
Franklinlloyd15-Jan-09 5:16
Franklinlloyd15-Jan-09 5:16 
AnswerRe: onselectedindexchanged Pin
Scott Dorman15-Jan-09 5:31
professionalScott Dorman15-Jan-09 5:31 
QuestionProblem with Repeater........Values get repeated. Pin
Charmy315-Jan-09 4:32
Charmy315-Jan-09 4:32 
My repeater looks like :

Cat
cat.jpg

Dog
dog.jpg //total 2 results.So repated twice

Cat
cat.jpg

Dog
dog.jpg


Code .aspx page

<asp:repeater id="Rep_First" runat="server" visible="true" onitemdatabound="Rep_First_ItemDataBound" xmlns:asp="#unknown">

<itemtemplate>

<asp:repeater id="Rep_Second" runat="server">

<itemtemplate>

<asp:literal id="litImage" runat="server" text="<%# DataBinder.Eval(Container.DataItem," name")%&gt;"=""> 



<asp:image id="Img" runat="server">











Code Behind

if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)

{

Repeater Rep_Sec = (Repeater)e.Item.FindControl("Rep_Second");

if (Rep_Sec != null)

{

Rep_Sec.DataSource =myresultlist;

Rep_Sec.DataBind();

}

What do I do????
AnswerRe: Problem with Repeater........Values get repeated. Pin
Abhijit Jana15-Jan-09 5:28
professionalAbhijit Jana15-Jan-09 5:28 
GeneralRe: Problem with Repeater........Values get repeated. Pin
Charmy315-Jan-09 5:52
Charmy315-Jan-09 5:52 
AnswerRe: Problem with Repeater........Values get repeated. Pin
Charmy315-Jan-09 7:34
Charmy315-Jan-09 7:34 
Questionexcel upload probs Pin
Member 387988115-Jan-09 4:27
Member 387988115-Jan-09 4:27 
AnswerRe: excel upload probs Pin
ToddHileHoffer15-Jan-09 4:42
ToddHileHoffer15-Jan-09 4:42 
Question[Message Deleted] Pin
Charmy315-Jan-09 4:05
Charmy315-Jan-09 4:05 
AnswerRe: Values get overwrite in repeater Pin
Abhijit Jana15-Jan-09 4:29
professionalAbhijit Jana15-Jan-09 4:29 
GeneralRe: Values get overwrite in repeater Pin
Charmy315-Jan-09 4:52
Charmy315-Jan-09 4:52 
GeneralRe: Values get overwrite in repeater Pin
Abhijit Jana15-Jan-09 5:08
professionalAbhijit Jana15-Jan-09 5:08 
GeneralRe: Values get overwrite in repeater Pin
Charmy315-Jan-09 5:20
Charmy315-Jan-09 5:20 
Questionballon tooltip Pin
Mogaambo15-Jan-09 3:21
Mogaambo15-Jan-09 3:21 
AnswerRe: ballon tooltip Pin
ToddHileHoffer15-Jan-09 3:44
ToddHileHoffer15-Jan-09 3:44 
QuestionDisable web service from it's own code Pin
thorsman9915-Jan-09 3:05
thorsman9915-Jan-09 3:05 
AnswerRe: Disable web service from it's own code Pin
ToddHileHoffer15-Jan-09 3:35
ToddHileHoffer15-Jan-09 3:35 
GeneralRe: Disable web service from it's own code Pin
thorsman9915-Jan-09 3:45
thorsman9915-Jan-09 3:45 
GeneralRe: Disable web service from it's own code Pin
ToddHileHoffer15-Jan-09 5:35
ToddHileHoffer15-Jan-09 5:35 
QuestionRegular Expression Problem Pin
Member 345333115-Jan-09 2:54
Member 345333115-Jan-09 2:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.