Click here to Skip to main content
15,890,123 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Best practice for storing images Pin
Michael Sync28-Aug-07 21:50
Michael Sync28-Aug-07 21:50 
QuestionHow to add attributes to form tag of master page Pin
Sumithra Guturi28-Aug-07 20:34
Sumithra Guturi28-Aug-07 20:34 
QuestionError when exporting to PDF Pin
samerh28-Aug-07 19:47
samerh28-Aug-07 19:47 
QuestionAjax in asp.net Pin
IamAmit28-Aug-07 19:28
IamAmit28-Aug-07 19:28 
AnswerRe: Ajax in asp.net Pin
Imran Khan Pathan28-Aug-07 19:34
Imran Khan Pathan28-Aug-07 19:34 
AnswerRe: Ajax in asp.net Pin
Christian Graus28-Aug-07 20:52
protectorChristian Graus28-Aug-07 20:52 
Questionasp.Net Login Controls Customization Pin
nitpall28-Aug-07 18:08
nitpall28-Aug-07 18:08 
QuestionIs the Repeater control able to handle input? Pin
BillW4228-Aug-07 18:03
BillW4228-Aug-07 18:03 
Is the Repeater control able to handle input? This is the code I am using right now. I am not able to get the values from the TextBox fields.

I am trying to populate a series of TextBoxes that will contain user input for the related process field. I am using ASP.NET 2.0 and C#.

Thanks!

Client Side:
<asp:Repeater ID="rptrProccessInput" runat="server">
<ItemTemplate>
Process: <%# DataBinder.Eval(Container.DataItem, "process") %> Target:<asp:TextBox runat="server" ID="txtTarget"></asp:TextBox> Comment:<asp:TextBox runat="server" ID="txtComment"></asp:TextBox><br>
</ItemTemplate>
</asp:Repeater>

Server Side:
protected void Button2_Click(object sender, EventArgs e)
{
TextBox txtTarget = null;
TextBox txtComment = null;

foreach (RepeaterItem ctrl in rptrProccessInput.Items)
{
txtTarget = (TextBox)ctrl.FindControl("txtTarget");
txtComment = (TextBox)ctrl.FindControl("txtComment");

Debug.WriteLine(txtTarget.Text +":"+ txtComment.Text);
}
}
AnswerRe: Is the Repeater control able to handle input? Pin
Imran Khan Pathan28-Aug-07 19:19
Imran Khan Pathan28-Aug-07 19:19 
QuestionGet Image insted of color Pin
duo!@#28-Aug-07 15:58
duo!@#28-Aug-07 15:58 
AnswerRe: Get Image insted of color Pin
Michael Sync28-Aug-07 19:01
Michael Sync28-Aug-07 19:01 
GeneralRe: Get Image insted of color Pin
duo!@#28-Aug-07 19:51
duo!@#28-Aug-07 19:51 
GeneralXHTML Compliance of ContentPlaceHolder Pin
Ed.Poore28-Aug-07 13:17
Ed.Poore28-Aug-07 13:17 
GeneralRe: XHTML Compliance of ContentPlaceHolder Pin
Michael Sync28-Aug-07 18:52
Michael Sync28-Aug-07 18:52 
Questioncheck if ie browser is running inside winform Pin
algoaddict28-Aug-07 12:00
algoaddict28-Aug-07 12:00 
AnswerRe: check if ie browser is running inside winform Pin
Christian Graus28-Aug-07 12:05
protectorChristian Graus28-Aug-07 12:05 
QuestionRe: check if ie browser is running inside winform Pin
algoaddict28-Aug-07 12:24
algoaddict28-Aug-07 12:24 
AnswerRe: check if ie browser is running inside winform Pin
Christian Graus28-Aug-07 15:16
protectorChristian Graus28-Aug-07 15:16 
QuestionInput CAPS letters in textbox Pin
tjkota28-Aug-07 11:30
tjkota28-Aug-07 11:30 
AnswerRe: Input CAPS letters in textbox Pin
Fred_Smith28-Aug-07 11:35
Fred_Smith28-Aug-07 11:35 
GeneralRe: Input CAPS letters in textbox Pin
tjkota28-Aug-07 11:38
tjkota28-Aug-07 11:38 
GeneralRe: Input CAPS letters in textbox Pin
Fred_Smith28-Aug-07 11:50
Fred_Smith28-Aug-07 11:50 
GeneralRe: Input CAPS letters in textbox Pin
Christian Graus28-Aug-07 13:34
protectorChristian Graus28-Aug-07 13:34 
GeneralRe: Input CAPS letters in textbox Pin
tjkota28-Aug-07 13:36
tjkota28-Aug-07 13:36 
QuestionUse different web.config for debugging Pin
error140828-Aug-07 8:31
error140828-Aug-07 8:31 

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.