Click here to Skip to main content
16,006,006 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Open popup window on selectedIndexChange of "asp:dropdownlist" Pin
Imran Khan Pathan24-Jul-07 23:43
Imran Khan Pathan24-Jul-07 23:43 
GeneralRe: Open popup window on selectedIndexChange of "asp:dropdownlist" Pin
deep724-Jul-07 23:49
deep724-Jul-07 23:49 
AnswerRe: Open popup window on selectedIndexChange of "asp:dropdownlist" Pin
szukuro24-Jul-07 23:51
szukuro24-Jul-07 23:51 
GeneralRe: Open popup window on selectedIndexChange of "asp:dropdownlist" Pin
deep725-Jul-07 0:10
deep725-Jul-07 0:10 
Questionhow to add record to next row in datagrid Pin
rahul.net1124-Jul-07 23:19
rahul.net1124-Jul-07 23:19 
GeneralRe: how to add record to next row in datagrid Pin
BasharatAli24-Jul-07 23:58
BasharatAli24-Jul-07 23:58 
GeneralRe: how to add record to next row in datagrid Pin
rahul.net1125-Jul-07 0:28
rahul.net1125-Jul-07 0:28 
AnswerRe: how to add record to next row in datagrid Pin
BasharatAli25-Jul-07 0:52
BasharatAli25-Jul-07 0:52 
if u r trying to get only one candidate record of Grd and PGrd from 2 different tables and show it to grid then try this type of logic

dtGrd (this table contains Graduation info agiant CandidateID)
dtPGrd (this table contains PG info agiant CandidateID)

dt (this table contains that columns which u want to show from both ur above tables)

dim dr as DataRow<br />
<br />
if dtPGrd.rows.count>0 then<br />
<br />
dr=dt.NewRow<br />
dr.item("ColumnName")=dtPGrd.rows(0)("ColumnName")<br />
dr.item("......<br />
<br />
dt.rows.add(dr)<br />
<br />
end if<br />
<br />
<br />
if dtGrd.rows.count>0 then<br />
<br />
dr=dt.NewRow<br />
dr.item("ColumnName")=dtGrd.rows(0)("ColumnName")<br />
dr.item("......<br />
<br />
dt.rows.add(dr)<br />
<br />
end if<br />
<br />
Grid_View1.DataSource=dt<br />
Grid_View1.DataBinding()

if u want to do this for many candidate then use this logic in lop

Hope it's helpfull for you Smile | :)

Basharat
GeneralRe: how to add record to next row in datagrid Pin
rahul.net1125-Jul-07 2:24
rahul.net1125-Jul-07 2:24 
QuestionIntresting Task- But Very urgent Pin
sharruom24-Jul-07 23:18
sharruom24-Jul-07 23:18 
QuestionError in updating date Pin
n_gchaitra24-Jul-07 23:09
n_gchaitra24-Jul-07 23:09 
AnswerRe: Error in updating date Pin
N a v a n e e t h25-Jul-07 1:28
N a v a n e e t h25-Jul-07 1:28 
GeneralRe: Error in updating date Pin
n_gchaitra27-Jul-07 0:29
n_gchaitra27-Jul-07 0:29 
Questiononline gaming project Pin
purvi barot24-Jul-07 22:45
purvi barot24-Jul-07 22:45 
AnswerRe: online gaming project Pin
Edwin Syarief25-Jul-07 22:37
Edwin Syarief25-Jul-07 22:37 
QuestionDisable all textbox & window.open problem Pin
J Liang24-Jul-07 22:38
J Liang24-Jul-07 22:38 
AnswerRe: Disable all textbox & window.open problem Pin
Red_Wizard_Shot_The_Food24-Jul-07 22:59
Red_Wizard_Shot_The_Food24-Jul-07 22:59 
GeneralRe: Disable all textbox & window.open problem Pin
J Liang25-Jul-07 18:07
J Liang25-Jul-07 18:07 
GeneralRe: Disable all textbox & window.open problem Pin
Red_Wizard_Shot_The_Food25-Jul-07 22:21
Red_Wizard_Shot_The_Food25-Jul-07 22:21 
AnswerRe: Disable all textbox & window.open problem Pin
Arindam Tewary24-Jul-07 23:04
professionalArindam Tewary24-Jul-07 23:04 
GeneralRe: Disable all textbox & window.open problem Pin
J Liang25-Jul-07 18:10
J Liang25-Jul-07 18:10 
QuestionBest way to generate and wire-up events for dynamic controls? Pin
Red_Wizard_Shot_The_Food24-Jul-07 22:36
Red_Wizard_Shot_The_Food24-Jul-07 22:36 
QuestionUser.Identity.name Pin
isaii24-Jul-07 22:35
isaii24-Jul-07 22:35 
GeneralRe: User.Identity.name Pin
BasharatAli24-Jul-07 23:42
BasharatAli24-Jul-07 23:42 
Questionhow to use scrolling in grid view Pin
Piyush Vardhan Singh24-Jul-07 21:18
Piyush Vardhan Singh24-Jul-07 21:18 

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.