Click here to Skip to main content
15,915,163 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How to insert/update a row/cell in datagrid? Pin
skhan173-Sep-09 9:49
skhan173-Sep-09 9:49 
GeneralRe: How to insert/update a row/cell in datagrid? Pin
Not Active3-Sep-09 10:10
mentorNot Active3-Sep-09 10:10 
QuestionRedirect URL problem Pin
zeeShan anSari3-Sep-09 7:10
zeeShan anSari3-Sep-09 7:10 
AnswerRe: Redirect URL problem Pin
Abhishek Sur3-Sep-09 9:28
professionalAbhishek Sur3-Sep-09 9:28 
GeneralRe: Redirect URL problem Pin
zeeShan anSari3-Sep-09 11:10
zeeShan anSari3-Sep-09 11:10 
AnswerRe: Redirect URL problem Pin
Edbert P3-Sep-09 16:33
Edbert P3-Sep-09 16:33 
QuestionSetting x-microsoftajax: Delta=true header is giving http error 400 Pin
Ash_VCPP3-Sep-09 4:31
Ash_VCPP3-Sep-09 4:31 
AnswerRe: Setting x-microsoftajax: Delta=true header is giving http error 400 Pin
Abhishek Sur3-Sep-09 7:42
professionalAbhishek Sur3-Sep-09 7:42 
GeneralRe: Setting x-microsoftajax: Delta=true header is giving http error 400 Pin
Ash_VCPP3-Sep-09 21:35
Ash_VCPP3-Sep-09 21:35 
Question[Message Deleted] Pin
ToddHileHoffer3-Sep-09 3:06
ToddHileHoffer3-Sep-09 3:06 
AnswerRe: Entity Model Insert Pin
Not Active3-Sep-09 3:35
mentorNot Active3-Sep-09 3:35 
GeneralRe: Entity Model Insert Pin
ToddHileHoffer3-Sep-09 3:53
ToddHileHoffer3-Sep-09 3:53 
GeneralRe: Entity Model Insert Pin
ToddHileHoffer3-Sep-09 4:09
ToddHileHoffer3-Sep-09 4:09 
GeneralRe: Entity Model Insert Pin
Not Active3-Sep-09 4:46
mentorNot Active3-Sep-09 4:46 
GeneralRe: Entity Model Insert Pin
ToddHileHoffer3-Sep-09 4:51
ToddHileHoffer3-Sep-09 4:51 
GeneralRe: Entity Model Insert Pin
ToddHileHoffer3-Sep-09 4:52
ToddHileHoffer3-Sep-09 4:52 
GeneralRe: Entity Model Insert Pin
Edbert P3-Sep-09 16:46
Edbert P3-Sep-09 16:46 
GeneralRe: Entity Model Insert Pin
ToddHileHoffer4-Sep-09 3:48
ToddHileHoffer4-Sep-09 3:48 
QuestionDynamically populate dropdown dependent on another dropdown using SqlDataSource Pin
rikhav3-Sep-09 2:28
rikhav3-Sep-09 2:28 
AnswerRe: Dynamically populate dropdown dependent on another dropdown using SqlDataSource Pin
Arun Jacob3-Sep-09 2:35
Arun Jacob3-Sep-09 2:35 
QuestionGridView inside UpdatePanel not Uploading Image Pin
.NET- India 3-Sep-09 1:55
.NET- India 3-Sep-09 1:55 
AnswerRe: GridView inside UpdatePanel not Uploading Image Pin
Abhishek Sur3-Sep-09 7:48
professionalAbhishek Sur3-Sep-09 7:48 
GeneralRe: GridView inside UpdatePanel not Uploading Image Pin
.NET- India 3-Sep-09 21:38
.NET- India 3-Sep-09 21:38 
GeneralRe: GridView inside UpdatePanel not Uploading Image [modified] Pin
Abhishek Sur4-Sep-09 7:45
professionalAbhishek Sur4-Sep-09 7:45 
GeneralRe: GridView inside UpdatePanel not Uploading Image Pin
macupryk28-Oct-09 14:58
macupryk28-Oct-09 14:58 
I have the same problem can you take a look:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ctrlUserProfilePics.ascx.cs"
Inherits="OmegaLove.Web.UI.ctrlUserProfilePics" %>
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<%--<%@ Register Src="ctrlGPStatusBox.ascx" TagName="ctrlGPStatusBox" TagPrefix="uc1" %>
--%>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<br />
<div id="UploadArea">
<table>
<tr>
<td>
Browse Image:
</td>
<td>
<asp:FileUpload ID="FileUpload1" runat="server" />
</td>
</tr>
</table>
</div>
<p>
<asp:Button ID="UploadButton" runat="server" Text="Upload Now" OnClick="UploadButton_Click" />
</p>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Label ID="lblResult" runat="server" ForeColor="#0066FF"></asp:Label>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="UploadButton" />
</Triggers>
</asp:UpdatePanel>
<br />
<hr />
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="5"
GridLines="None" ShowHeader="False">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Image ID="imgSaved" runat="server" ImageUrl='<%# imageURL(DataBinder.Eval(Container.DataItem, "img_id").ToString()) %>'
AlternateText='<%#DataBinder.Eval(Container.DataItem,"img_title") %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>
<EmptyDataTemplate>
No records found
</EmptyDataTemplate>
</asp:GridView>

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.