Click here to Skip to main content
15,895,370 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: related to itext sharp Pin
Abhishek Pant4-Feb-13 21:36
professionalAbhishek Pant4-Feb-13 21:36 
GeneralRe: related to itext sharp Pin
Member 97985416-Feb-13 17:41
Member 97985416-Feb-13 17:41 
GeneralRe: related to itext sharp Pin
Abhishek Pant6-Feb-13 18:09
professionalAbhishek Pant6-Feb-13 18:09 
GeneralRe: related to itext sharp Pin
Member 97985416-Feb-13 19:21
Member 97985416-Feb-13 19:21 
GeneralRe: related to itext sharp Pin
Member 97985416-Feb-13 18:08
Member 97985416-Feb-13 18:08 
Answerrelated to itext sharp-iText use for commercial purpose Pin
Abhishek Pant6-Feb-13 19:07
professionalAbhishek Pant6-Feb-13 19:07 
AnswerRe: related to itext sharp Pin
Sandeep Mewara2-Feb-13 0:24
mveSandeep Mewara2-Feb-13 0:24 
QuestionDisplay image using handler.ashx what wrong my code Pin
Michael†Cheong31-Jan-13 20:43
Michael†Cheong31-Jan-13 20:43 
XML
aspx
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
        DataKeyNames="UserID" DataSourceID="SqlDataSource1">
        <Columns>
            <asp:BoundField DataField="UserID" HeaderText="UserID" ReadOnly="True"
                SortExpression="UserID" />
            <asp:TemplateField HeaderText="Image">
                 <ItemTemplate>
                    <asp:Image ID="Image2" runat="server" ImageUrl='<%# "Handler.ashx?UserID="+ Eval("UserID") %>' Height="150px" Width="150px"/>
                 </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>
_____________________________________________________________________________________________________________________________________________________________

   <asp:SqlDataSource ID="SqlDataSource1" runat="server"
        ConnectionString="<%$ ConnectionStrings:ConnectionString %>"

        SelectCommand="SELECT [UserID], [Image] FROM [Users] WHERE ([UserID] = @UserID)">
        <SelectParameters>
            <asp:CookieParameter CookieName="userid" DefaultValue="" Name="UserID"
                Type="String" />
        </SelectParameters>
    </asp:SqlDataSource>
_____________________________________________________________________________________________________________________________________________________________
 public class Handler : IHttpHandler
    {

         string strcon = ConfigurationManager.AppSettings["ConnectionString"].ToString();
        public void ProcessRequest(HttpContext context)
        {

           string imageid = context.Request.QueryString["UserID"];
            SqlConnection connection = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString);
            connection.Open();
            SqlCommand command = new SqlCommand("select UserID,Image FROM Users where UserID=" + imageid, connection);
            SqlDataReader dr = command.ExecuteReader();
            dr.Read();
         //   context.Response.BinaryWrite((Byte[])dr[0]);
            context.Response.BinaryWrite((Byte[])dr[dr.GetOrdinal("Image")]);
            connection.Close();
            context.Response.End();
         }
public bool IsReusable
        { ........................ with close properly
_____________________________________________________________________________________________________________________________________________________________
Database

UserID,UserName,Name,Image (UEC80001,Michael,MyName,<Binary data>)(nvarchar(50),nvarchar(50),nvarchar(50),image)
_____________________________________________________________________________________________________________________________________________________________

AnswerRe: Display image using handler.ashx what wrong my code Pin
Richard Deeming1-Feb-13 2:17
mveRichard Deeming1-Feb-13 2:17 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Michael†Cheong1-Feb-13 4:16
Michael†Cheong1-Feb-13 4:16 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Richard Deeming1-Feb-13 5:36
mveRichard Deeming1-Feb-13 5:36 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Michael†Cheong1-Feb-13 5:58
Michael†Cheong1-Feb-13 5:58 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Michael†Cheong1-Feb-13 7:03
Michael†Cheong1-Feb-13 7:03 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Richard Deeming1-Feb-13 8:12
mveRichard Deeming1-Feb-13 8:12 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Michael†Cheong8-Feb-13 20:10
Michael†Cheong8-Feb-13 20:10 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Richard Deeming11-Feb-13 1:29
mveRichard Deeming11-Feb-13 1:29 
QuestionImagesIn Gridview Pin
m.sutarmahesh31-Jan-13 20:13
m.sutarmahesh31-Jan-13 20:13 
QuestionImporting Excel into Gridview, doesn't import all rows Pin
Craist31-Jan-13 8:29
Craist31-Jan-13 8:29 
AnswerRe: Importing Excel into Gridview, doesn't import all rows Pin
Craist31-Jan-13 9:22
Craist31-Jan-13 9:22 
QuestionWeb Pages Authentication Pin
Jassim Rahma30-Jan-13 21:22
Jassim Rahma30-Jan-13 21:22 
AnswerRe: Web Pages Authentication Pin
Rahul Rajat Singh30-Jan-13 22:14
professionalRahul Rajat Singh30-Jan-13 22:14 
QuestionAuthentication with database MVC4 Pin
AghaKhan30-Jan-13 20:44
AghaKhan30-Jan-13 20:44 
QuestionAutocomplete List hides behind Grid's horizontal scrollbar Pin
Ponka_developer30-Jan-13 12:01
Ponka_developer30-Jan-13 12:01 
AnswerRe: Autocomplete List hides behind Grid's horizontal scrollbar Pin
jkirkerx30-Jan-13 12:50
professionaljkirkerx30-Jan-13 12:50 
QuestionMessage Removed Pin
29-Jan-13 4:39
professionalN_tro_P29-Jan-13 4:39 

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.