Click here to Skip to main content
15,917,538 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: http to https Pin
Paul Conrad14-Jul-07 10:27
professionalPaul Conrad14-Jul-07 10:27 
GeneralRe: http to https Pin
aditya.net14-Jul-07 14:33
aditya.net14-Jul-07 14:33 
GeneralRe: http to https Pin
Paul Conrad14-Jul-07 14:58
professionalPaul Conrad14-Jul-07 14:58 
GeneralRe: http to https Pin
aditya.net14-Jul-07 15:32
aditya.net14-Jul-07 15:32 
GeneralRe: http to https Pin
Manas Bhardwaj14-Jul-07 22:40
professionalManas Bhardwaj14-Jul-07 22:40 
AnswerRe: http to https Pin
neerubee15-Jul-07 19:43
neerubee15-Jul-07 19:43 
QuestionHow to bound object for editing Gridview Pin
Kurian_Kurian14-Jul-07 3:56
Kurian_Kurian14-Jul-07 3:56 
QuestionServer.Mappath Pin
Kurian_Kurian14-Jul-07 3:19
Kurian_Kurian14-Jul-07 3:19 
Hi. in my web application there is a option for showing the photos,when click photos button will load photos.aspx page and am keeping the images in the server folder name Photos.in my local machine while loading the page i will get all the images which i store in the Photos folder,but i host this page and open this page am not getting any images.the page load event as follows.what is wrong with this code.somebody can help me.


if (!IsPostBack)
{
DataSet ds = new DataSet();
DataTable dt = new DataTable("Photos");
dt.Columns.Add("Photos", Type.GetType("System.String"));
foreach (string Files in Directory.GetFiles(Server.MapPath("Photos"), "*.jpg"))
{

dt.Rows.Add(Files);
}
ds.Tables.Add(dt);
this.dgPhotos.DataSource = ds;
this.dgPhotos.DataBind();
}
AnswerRe: Server.Mappath Pin
DarrollWalsh14-Jul-07 3:57
DarrollWalsh14-Jul-07 3:57 
AnswerRe: Server.Mappath Pin
Guffa14-Jul-07 5:59
Guffa14-Jul-07 5:59 
QuestionParameter not valid Pin
Viral Upadhyay14-Jul-07 1:05
Viral Upadhyay14-Jul-07 1:05 
AnswerRe: Parameter not valid Pin
kubben14-Jul-07 1:14
kubben14-Jul-07 1:14 
GeneralRe: Parameter not valid Pin
Viral Upadhyay14-Jul-07 1:32
Viral Upadhyay14-Jul-07 1:32 
AnswerRe: Parameter not valid Pin
Guffa14-Jul-07 6:03
Guffa14-Jul-07 6:03 
GeneralRe: Parameter not valid Pin
Viral Upadhyay14-Jul-07 9:04
Viral Upadhyay14-Jul-07 9:04 
GeneralRe: Parameter not valid Pin
Guffa14-Jul-07 10:14
Guffa14-Jul-07 10:14 
QuestionDynamic Hyperlink Pin
.NET- India 13-Jul-07 23:48
.NET- India 13-Jul-07 23:48 
AnswerRe: Dynamic Hyperlink Pin
Manas Bhardwaj14-Jul-07 4:44
professionalManas Bhardwaj14-Jul-07 4:44 
QuestionCrystal Reports -- Unable to get report name in code behind in ASP.NET2.0 web form. Pin
Jagadeesh Jupalli13-Jul-07 21:39
Jagadeesh Jupalli13-Jul-07 21:39 
AnswerRe: Crystal Reports -- Unable to get report name in code behind in ASP.NET2.0 web form. Pin
kubben14-Jul-07 1:13
kubben14-Jul-07 1:13 
GeneralRe: Crystal Reports -- Unable to get report name in code behind in ASP.NET2.0 web form. Pin
Jagadeesh Jupalli14-Jul-07 2:30
Jagadeesh Jupalli14-Jul-07 2:30 
QuestionDatagrid Colunm Header Pin
| Muhammad Waqas Butt |13-Jul-07 21:35
professional| Muhammad Waqas Butt |13-Jul-07 21:35 
AnswerRe: Datagrid Colunm Header Pin
Gamzun13-Jul-07 22:22
Gamzun13-Jul-07 22:22 
AnswerRe: Datagrid Colunm Header Pin
arslanjatt13-Jul-07 22:23
arslanjatt13-Jul-07 22:23 
GeneralRe: Datagrid Colunm Header Pin
Manas Bhardwaj14-Jul-07 4:46
professionalManas Bhardwaj14-Jul-07 4:46 

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.