TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Abdalla Elawad
NA
1k
214k
How to Select and save photos ?
Dec 8 2016 7:27 AM
I Have more than 20.000 photos , i want to save in folder , i have try create folder in visual studio see to steps below :
1/ create folder in V.Studio
2/Create Table in SQL
3/ create stored Proceures (Select)
I will attached for all steps like photos
but this trying is failed .
Code below :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data.SqlClient;
using System.Data;
using System.Configuration;
using System.IO;
namespace OperationCashPlan
{
public partial class WebFormTest : System.Web.UI.Page
{
SqlConnection Conn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["Cash_PlanConne"].ConnectionString);
protected void Page_Load(object sender, EventArgs e)
{
}
protected void DropDownList4_SelectedIndexChanged(object sender, EventArgs e)
{
try
{
SqlCommand xp = new SqlCommand("Select_Images2", Conn);
xp.Parameters.Add("@EmpName", SqlDbType.Char).Value = (DropDownList4.SelectedValue);
Conn.Open();
xp.ExecuteNonQuery();
SqlDataAdapter da = new SqlDataAdapter();
da.SelectCommand = xp;
DataSet ds = new DataSet();
da.Fill(ds, "Table_1");
GridView1.DataSource = ds;
GridView1.DataBind();
Conn.Close();
}
catch
{
Label1.Text = " Not Found Image or No.";
}
}
}
}
Reply
Answers (
2
)
Validation for all the Properties of the Class
C# - If datetime return null show 'Unknown' message.