Click here to Skip to main content
15,910,872 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: Storing Setting files so they can be edited during runtime. Pin
boy.pockets14-Aug-08 21:30
boy.pockets14-Aug-08 21:30 
QuestionUrgent problem with file uploading( uploading video files into a web application ) Pin
reogeo200814-Aug-08 17:27
reogeo200814-Aug-08 17:27 
AnswerRe: Urgent problem with file uploading( uploading video files into a web application ) Pin
Christian Graus14-Aug-08 17:41
protectorChristian Graus14-Aug-08 17:41 
AnswerRe: Urgent problem with file uploading( uploading video files into a web application ) Pin
Paul Conrad14-Aug-08 19:08
professionalPaul Conrad14-Aug-08 19:08 
GeneralRe: Urgent problem with file uploading( uploading video files into a web application ) Pin
Christian Graus14-Aug-08 19:15
protectorChristian Graus14-Aug-08 19:15 
JokeRe: Urgent problem with file uploading( uploading video files into a web application ) Pin
Paul Conrad14-Aug-08 19:52
professionalPaul Conrad14-Aug-08 19:52 
GeneralRe: Urgent problem with file uploading( uploading video files into a web application ) Pin
Christian Graus14-Aug-08 20:17
protectorChristian Graus14-Aug-08 20:17 
QuestionHow to delete a row from the repeater using a imagbutton delete in each row Pin
reogeo200814-Aug-08 17:14
reogeo200814-Aug-08 17:14 
this is my repeter code


<asp:Repeater ID="rptrr" runat="server">
<HeaderTemplate>
<table>
<tr>
<th>
Language</th>
<th>
Description</th><th>Title</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>

<td>
<asp:Label runat="server" ID="Label1" Text='<%#DataBinder.Eval(Container, "DataItem.res_Language").ToString() %>' />
</td>
<td>
<asp:Label runat="server" ID="Label2" Text='<%#DataBinder.Eval(Container, "DataItem.res_Description").ToString() %>' />
</td>
<td>
<asp:Label runat="server" ID="Label5" Text='<%#DataBinder.Eval(Container, "DataItem.res_Title").ToString() %>' />
</td>
<td >
<a href="EditResources.aspx?id=<%#DataBinder.Eval(Container, "DataItem.res_ID").ToString() %>">
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/icon_edit.gif" /></a>
</td>
<td >
<asp:Image ID="Image2" runat="server" ImageUrl="~/Images/icon_delete.gif" />
</td>


</tr>
</ItemTemplate>

<FooterTemplate>
</table>
</FooterTemplate>
</asp:Repeater>



please let me know the code to delete a row from the repeater whn im clicking on the image button "delete"
AnswerRe: How to delete a row from the repeater using a imagbutton delete in each row Pin
Christian Graus14-Aug-08 17:40
protectorChristian Graus14-Aug-08 17:40 
QuestionUrgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
HatakeKaKaShi14-Aug-08 15:04
HatakeKaKaShi14-Aug-08 15:04 
AnswerRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
Christian Graus14-Aug-08 15:23
protectorChristian Graus14-Aug-08 15:23 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
HatakeKaKaShi14-Aug-08 15:28
HatakeKaKaShi14-Aug-08 15:28 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
Christian Graus14-Aug-08 15:56
protectorChristian Graus14-Aug-08 15:56 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
HatakeKaKaShi14-Aug-08 15:59
HatakeKaKaShi14-Aug-08 15:59 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
Christian Graus14-Aug-08 16:26
protectorChristian Graus14-Aug-08 16:26 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
HatakeKaKaShi14-Aug-08 16:39
HatakeKaKaShi14-Aug-08 16:39 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
Christian Graus14-Aug-08 16:41
protectorChristian Graus14-Aug-08 16:41 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
HatakeKaKaShi14-Aug-08 17:31
HatakeKaKaShi14-Aug-08 17:31 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
Christian Graus14-Aug-08 17:42
protectorChristian Graus14-Aug-08 17:42 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
HatakeKaKaShi14-Aug-08 17:54
HatakeKaKaShi14-Aug-08 17:54 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
Christian Graus14-Aug-08 17:56
protectorChristian Graus14-Aug-08 17:56 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
Paul Conrad14-Aug-08 19:09
professionalPaul Conrad14-Aug-08 19:09 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
HatakeKaKaShi14-Aug-08 19:13
HatakeKaKaShi14-Aug-08 19:13 
AnswerRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
Paul Conrad14-Aug-08 19:10
professionalPaul Conrad14-Aug-08 19:10 
GeneralRe: Urgent Problem with (String was not recognized as a valid DateTime) In server but not in localhost Pin
HatakeKaKaShi14-Aug-08 19:20
HatakeKaKaShi14-Aug-08 19:20 

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.