Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

DX Roster

@DX Roster
About
Posts
26
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Show image on upload [modified]
    D DX Roster

    sir actually problem is this that i do not want to save image in folder before display in image control. Means first i want to browse image using fileupload control then on open click of subwindow i want to show image in image control for confirmation that selected image is correct and after that i want to save it in folder or database... Hope u will got my question

    C# help database question

  • Show image on upload [modified]
    D DX Roster

    hi.... I want to upload image using fileupload/asyfileupload control... and want to show in image control...at a time .. any one can help me. sir actually problem is this that i do not want to save image in folder before display in image control. Means first i want to browse image using fileupload control then on open click of subwindow i want to show image in image control for confirmation that selected image is correct and after that i want to save it in folder or database... Hope u will got my question -- Modified Tuesday, April 13, 2010 10:21 AM

    C# help database question

  • how to use silverlight tool in .aspx page
    D DX Roster

    hi.. I am developing a web application and i want to use the silver light tools in my .aspx page so can any one suggest me that how is it possible?? and i am not getting the silver light tools on my tool window i am getting only three tools in silverlight tab that are Pointer,Silverlight,MeadiaPlayer.. so please guide me..

    WPF tutorial tools question

  • SessionTimeOut Problem
    D DX Roster

    the Session time out minimum value is 1 minute and by default its 10 minute and we can extend it to 1440 minute using code like.. use the following code in the web.config file in u r application Where 10000 in minutes...... you can get more information from following link: Prevent Session Timeout in ASP.NET[^] If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    Web Development database help csharp tutorial announcement

  • Sending mail using ASP.
    D DX Roster

    no sir it will not give a error because in this we have to define mail protocol name.. we can define SMTP,POP, etc.. but when we want to send mail not store then we can use SMTP protocol if we want to send mail as well as store then we use POP protocol.. so SMTP is not a server name its a type of protocol.. If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    Web Development sysadmin windows-admin tutorial question

  • Sending email and keeping a copy on the server
    D DX Roster

    first of all use POP control protocol for send mail because it provide facility to send mail as well as store mail.. and SMTP protocol only use for send mail... after that for save mail use fileupload control for save mail at server side in folder If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# csharp sysadmin question

  • about database updation in C#
    D DX Roster

    yes your method is correct but i was telling about match two cooman field If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# csharp database announcement

  • cannot connect to sqlserver 2005
    D DX Roster

    use follwing syntax try { Sqlconnection con=new Sqlconnection("connection String"); con.open(); } catch() {} If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    ASP.NET help csharp database sql-server visual-studio

  • confirmation message box from code behind
    D DX Roster

    you can use System.Windows.MessgaeBox.Show("message","heading"); If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    ASP.NET csharp asp-net

  • saving image to a folder
    D DX Roster

    you can use the fileupload control which is available in the standard control tool If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    Windows Forms

  • Crystal Reports
    D DX Roster

    http://www.thinkydink.com/crystal.html[^] If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    Windows Forms learning

  • Problem with query
    D DX Roster

    try below query SELECT * FROM tablename WHERE startdate AND enddate IF YOU GET YOUR ANSWER THAN PLEASE RATING ME If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    MySQL database help

  • display progress bar
    D DX Roster

    dear donto get upset read following link i am sure it will help you http://www.beansoftware.com/ASP.NET-Tutorials/ProgressBar-User-Control.aspx[^] If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# csharp

  • about database updation in C#
    D DX Roster

    you can also use following method update tablename set ('"+name+"',.....) where table1.id=table2.id and table1.customer_name=table2.customer_name If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# csharp database announcement

  • about database updation in C#
    D DX Roster

    yes you may be right but we can also match the comman field of the table in query..like for example update tablename set ('"+name+"',.....) where table1.id=table2.id and table1.customer_name=table2.customer_name If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# csharp database announcement

  • about database updation in C#
    D DX Roster

    i am not understanding your question but whatever i got i am telling you.. for making connection you can use join query on table.. If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# csharp database announcement

  • displaying updated datagridview
    D DX Roster

    make a one function in which the data table or data set is bind into the grid view.... after updation call the function immediately... then you will get your updated grid view.. If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# database

  • display progress bar
    D DX Roster

    hi there is a one toolkit available in the ajax cotrol tool kit that is progess tool so first try yourself to use this tool .... after that i will give you code... If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# csharp

  • Assembling bytes to an image
    D DX Roster

    try following code: private void Button2_Click(object sender, System.EventArgs e) { connection.Open(); SqlCommand command1 = new SqlCommand("select imgfile from myimages where imgname=@param", connection); SqlParameter myparam = command1.Parameters.Add("@param", SqlDbType.NVarChar, 30); myparam.Value = txtimgname.Text; byte[] img = (byte[])command1.ExecuteScalar(); MemoryStream str = new MemoryStream(); str.Write(img, 0, img.Length); Bitmap bit = new Bitmap(str); Response.ContentType = "image/jpeg";//or you can select your imagetype from database or directly write it here bit.Save(Response.OutputStream, ImageFormat.Jpeg); connection.Close(); } change your database name, field name, image name, attribute name. If You Get your answer then please Rating me... Thanks.. "Are You Ready" DX-ARMY

    C# graphics sysadmin data-structures help tutorial

  • Getting the column items in a datagrid
    D DX Roster

    Try this code sure it will help you Label myLabel = (Label)myGridView.Rows[myGridView.SelectedIndex].Cells[2].FindControl("myLabel");

    C# database
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups