Click here to Skip to main content
15,892,199 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Repeater Pin
Christian Graus27-Jul-07 17:46
protectorChristian Graus27-Jul-07 17:46 
QuestionSelect Statement problem Pin
ASPnoob27-Jul-07 16:14
ASPnoob27-Jul-07 16:14 
AnswerRe: Select Statement problem Pin
Christian Graus27-Jul-07 17:49
protectorChristian Graus27-Jul-07 17:49 
Questioncopy file to network folder Pin
Dpriya27-Jul-07 16:12
Dpriya27-Jul-07 16:12 
AnswerRe: copy file to network folder Pin
Dpriya27-Jul-07 16:36
Dpriya27-Jul-07 16:36 
AnswerRe: copy file to network folder Pin
Christian Graus27-Jul-07 17:51
protectorChristian Graus27-Jul-07 17:51 
GeneralRe: copy file to network folder Pin
Dpriya29-Jul-07 8:46
Dpriya29-Jul-07 8:46 
QuestionHow to show images in the Datagrid Pin
Kurian_Kurian27-Jul-07 16:00
Kurian_Kurian27-Jul-07 16:00 
Hi.I want to show the images in the datagrid.i want to bound the datasource into datagrid.the method i used for retrieving images is written down.using this method am getting other fields.i add one template column in the datagrid and add one image control in that item template,the template column datafield given this sql image column name.sql image datatype is Image.i want to show all the images in the datagrid.

public static DataSet getImages()
{
DataSet ds = new DataSet();

using (SqlConnection conn = new SqlConnection(connectionString))
{
using (SqlCommand cmd = new SqlCommand("SPOC_PHOTOS_SELECT", conn))
{
cmd.CommandType = CommandType.StoredProcedure;
using (SqlDataAdapter da = new SqlDataAdapter())

{
da.SelectCommand = cmd;
try
{
conn.Open();
da.Fill(ds);

return ds;
}
catch (Exception e)
{
throw e;
return null;
}
finally
{
conn.Close();
}
}
}
}
QuestionIIS gets Access Forbiden error [modified] Pin
beatles169227-Jul-07 12:19
beatles169227-Jul-07 12:19 
AnswerRe: IIS gets Access Forbiden error Pin
beatles169227-Jul-07 12:46
beatles169227-Jul-07 12:46 
AnswerRe: IIS gets Access Forbiden error Pin
Paul Conrad27-Jul-07 19:40
professionalPaul Conrad27-Jul-07 19:40 
Questionadding and removing table rows dynamically Pin
jojoStoneHead27-Jul-07 10:57
jojoStoneHead27-Jul-07 10:57 
AnswerRe: adding and removing table rows dynamically Pin
Christian Graus27-Jul-07 11:30
protectorChristian Graus27-Jul-07 11:30 
AnswerRe: adding and removing table rows dynamically Pin
jojoStoneHead27-Jul-07 13:38
jojoStoneHead27-Jul-07 13:38 
AnswerRe: adding and removing table rows dynamically Pin
Imran Khan Pathan27-Jul-07 23:24
Imran Khan Pathan27-Jul-07 23:24 
QuestionAdding a username/ password to http-post in a console application Pin
rbreault27-Jul-07 10:39
rbreault27-Jul-07 10:39 
AnswerRe: Adding a username/ password to http-post in a console application Pin
Paul Conrad27-Jul-07 19:41
professionalPaul Conrad27-Jul-07 19:41 
GeneralRe: Adding a username/ password to http-post in a console application Pin
rbreault27-Jul-07 19:43
rbreault27-Jul-07 19:43 
GeneralRe: Adding a username/ password to http-post in a console application Pin
Paul Conrad27-Jul-07 19:49
professionalPaul Conrad27-Jul-07 19:49 
QuestionDate formatting Pin
Hasan Ali27-Jul-07 10:22
Hasan Ali27-Jul-07 10:22 
AnswerRe: Date formatting Pin
Hasan Ali27-Jul-07 10:27
Hasan Ali27-Jul-07 10:27 
GeneralRe: Date formatting Pin
Hasan Ali27-Jul-07 10:45
Hasan Ali27-Jul-07 10:45 
GeneralRe: Date formatting Pin
Hasan Ali27-Jul-07 10:51
Hasan Ali27-Jul-07 10:51 
AnswerRe: Date formatting Pin
Paul Conrad27-Jul-07 10:40
professionalPaul Conrad27-Jul-07 10:40 
AnswerRe: Date formatting Pin
Christian Graus27-Jul-07 14:22
protectorChristian Graus27-Jul-07 14:22 

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.