Click here to Skip to main content
15,894,180 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionInternet explorer can not open the internet site. Operation aborted. Pin
dhiraj nag2-Jul-09 18:55
dhiraj nag2-Jul-09 18:55 
QuestionGridView hide Pin
haleemasher2-Jul-09 17:57
haleemasher2-Jul-09 17:57 
AnswerRe: GridView hide Pin
padmanabhan N2-Jul-09 18:21
padmanabhan N2-Jul-09 18:21 
GeneralRe: GridView hide Pin
haleemasher2-Jul-09 18:28
haleemasher2-Jul-09 18:28 
GeneralRe: GridView hide Pin
padmanabhan N2-Jul-09 18:39
padmanabhan N2-Jul-09 18:39 
GeneralRe: GridView hide Pin
himanshu25612-Jul-09 18:41
himanshu25612-Jul-09 18:41 
GeneralThis is the code Pin
haleemasher2-Jul-09 18:53
haleemasher2-Jul-09 18:53 
GeneralRe: This is the code Pin
padmanabhan N2-Jul-09 18:59
padmanabhan N2-Jul-09 18:59 
haleemasher wrote:
GridView1.DataSource = dataTable; GridView1.DataSourceID = String.Empty;


i dono where the error is... but try to include

private void FillVendorGrid()
{
dataTable = new DataTable();
cmd.Connection = cnx;
cmd.CommandText = "SELECT CouponType.CouponName, Coupon_Info.Coupon_TypeID FROM CouponType INNER JOIN Coupon_Info ON CouponType.CouponTypeID = Coupon_Info.Coupon_TypeID";
da1 = new SqlDataAdapter(cmd);
da1.Fill(dataTable);
GridView1.DataSource = dataTable;
GridView1.DataBind();
}

Padmanabhan
My Articles:
Articles[^]
My latest Article:
Word Automation[^]

GeneralRe: This is the code Pin
haleemasher2-Jul-09 19:06
haleemasher2-Jul-09 19:06 
GeneralRe: This is the code Pin
himanshu25612-Jul-09 19:12
himanshu25612-Jul-09 19:12 
GeneralRe: This is the code Pin
haleemasher2-Jul-09 19:17
haleemasher2-Jul-09 19:17 
GeneralRe: This is the code Pin
padmanabhan N2-Jul-09 19:21
padmanabhan N2-Jul-09 19:21 
GeneralRe: This is the code Pin
K03062-Jul-09 19:25
K03062-Jul-09 19:25 
GeneralRe: This is the code Pin
haleemasher2-Jul-09 19:33
haleemasher2-Jul-09 19:33 
GeneralRe: This is the code Pin
K03062-Jul-09 19:41
K03062-Jul-09 19:41 
GeneralRe: This is the code Pin
padmanabhan N2-Jul-09 19:49
padmanabhan N2-Jul-09 19:49 
GeneralRe: This is the code Pin
haleemasher2-Jul-09 20:06
haleemasher2-Jul-09 20:06 
Question[Message Deleted] Pin
N Ahmed2-Jul-09 12:26
N Ahmed2-Jul-09 12:26 
AnswerRe: Help Please !!! Pin
Not Active2-Jul-09 15:12
mentorNot Active2-Jul-09 15:12 
AnswerRe: Help Please !!! Pin
Christian Graus2-Jul-09 17:04
protectorChristian Graus2-Jul-09 17:04 
QuestionRegistration control? Pin
Hristiyan2-Jul-09 7:43
Hristiyan2-Jul-09 7:43 
AnswerRe: Registration control? Pin
Christian Graus2-Jul-09 8:18
protectorChristian Graus2-Jul-09 8:18 
GeneralRe: Registration control? Pin
Hristiyan2-Jul-09 8:22
Hristiyan2-Jul-09 8:22 
GeneralRe: Registration control? Pin
Christian Graus2-Jul-09 8:36
protectorChristian Graus2-Jul-09 8:36 
AnswerRe: Registration control? Pin
Svetlin Panayotov2-Jul-09 11:25
Svetlin Panayotov2-Jul-09 11:25 

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.