Click here to Skip to main content
15,898,134 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: DataView Pin
Sonia Gupta6-Aug-07 23:47
Sonia Gupta6-Aug-07 23:47 
Questiongridview does not get exported to explorer Pin
imranafsari6-Aug-07 21:46
imranafsari6-Aug-07 21:46 
Questionaspx page redirect not working in iframe tag [modified] Pin
rama charan6-Aug-07 21:24
rama charan6-Aug-07 21:24 
AnswerRe: aspx page redirect not working in iframe tag Pin
Vasudevan Deepak Kumar6-Aug-07 23:08
Vasudevan Deepak Kumar6-Aug-07 23:08 
GeneralRe: aspx page redirect not working in iframe tag Pin
rama charan7-Aug-07 1:48
rama charan7-Aug-07 1:48 
QuestionWeb Based installation Pin
vipin_nvk6-Aug-07 21:04
vipin_nvk6-Aug-07 21:04 
AnswerRe: Web Based installation Pin
Vasudevan Deepak Kumar6-Aug-07 22:42
Vasudevan Deepak Kumar6-Aug-07 22:42 
QuestionDisplaying data on a gridview Pin
Mamphekgo Bahula6-Aug-07 20:58
Mamphekgo Bahula6-Aug-07 20:58 
Hi i am trying to display data on a gridview but it doesn't display anything and it doesn't give any error.
here is my code

string conString = @"Data Source=jakes;Initial Catalog=K2;User ID=sa";
SqlConnection conProcinst = new SqlConnection(conString);
conProcinst.Open();
DataSet dsProcinst = new DataSet();
SqlDataAdapter daProcinst = new SqlDataAdapter();
try
{

SqlCommand cmdProcinst = new SqlCommand("SELECT * FROM _ProcInst", conProcinst);
daProcinst.SelectCommand = cmdProcinst;



daProcinst.Fill(dsProcinst,"_ProcInst");

GridView1.DataSource = dsProcInst;
GridView1.DataBind();
GridView1.AllowPaging = true;


Mamphekgo

AnswerRe: Displaying data on a gridview Pin
gauthee6-Aug-07 21:04
gauthee6-Aug-07 21:04 
GeneralRe: Displaying data on a gridview Pin
Mamphekgo Bahula6-Aug-07 21:28
Mamphekgo Bahula6-Aug-07 21:28 
GeneralRe: Displaying data on a gridview Pin
Mamphekgo Bahula6-Aug-07 21:29
Mamphekgo Bahula6-Aug-07 21:29 
AnswerRe: Displaying data on a gridview Pin
sulabh20206-Aug-07 21:04
sulabh20206-Aug-07 21:04 
AnswerRe: Displaying data on a gridview Pin
VanithaVasu6-Aug-07 21:58
VanithaVasu6-Aug-07 21:58 
GeneralRe: Displaying data on a gridview Pin
Sonia Gupta6-Aug-07 21:25
Sonia Gupta6-Aug-07 21:25 
GeneralRe: Displaying data on a gridview Pin
Mamphekgo Bahula6-Aug-07 21:45
Mamphekgo Bahula6-Aug-07 21:45 
AnswerRe: Displaying data on a gridview Pin
N a v a n e e t h6-Aug-07 22:48
N a v a n e e t h6-Aug-07 22:48 
QuestionMaintain values of Dynamic Dropdownlists in datagrid Pin
VanithaVasu6-Aug-07 20:46
VanithaVasu6-Aug-07 20:46 
AnswerRe: Maintain values of Dynamic Dropdownlists in datagrid Pin
gauthee6-Aug-07 20:54
gauthee6-Aug-07 20:54 
GeneralRe: Maintain values of Dynamic Dropdownlists in datagrid Pin
VanithaVasu6-Aug-07 21:20
VanithaVasu6-Aug-07 21:20 
AnswerRe: Maintain values of Dynamic Dropdownlists in datagrid Pin
N a v a n e e t h6-Aug-07 22:37
N a v a n e e t h6-Aug-07 22:37 
QuestionAuthentication class Pin
N a v a n e e t h6-Aug-07 20:37
N a v a n e e t h6-Aug-07 20:37 
AnswerRe: Authentication class Pin
VanithaVasu6-Aug-07 21:09
VanithaVasu6-Aug-07 21:09 
GeneralRe: Authentication class Pin
N a v a n e e t h6-Aug-07 22:26
N a v a n e e t h6-Aug-07 22:26 
QuestionCheckBox in a DataGrid? Pin
chand106-Aug-07 20:27
chand106-Aug-07 20:27 
AnswerRe: CheckBox in a DataGrid? Pin
N a v a n e e t h6-Aug-07 20:43
N a v a n e e t h6-Aug-07 20:43 

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.