Click here to Skip to main content
15,901,035 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: create a webforn in runtime Pin
guroo1325-Apr-07 8:27
guroo1325-Apr-07 8:27 
QuestionTrim Functionality in javascript Pin
siddisagar25-Apr-07 7:37
siddisagar25-Apr-07 7:37 
AnswerRe: Trim Functionality in javascript [modified] Pin
Venk25925-Apr-07 23:12
Venk25925-Apr-07 23:12 
QuestionGridView - How to show a date header? Pin
shapper25-Apr-07 7:33
shapper25-Apr-07 7:33 
QuestionHyperlink in Gridview Pin
hahii25-Apr-07 7:07
hahii25-Apr-07 7:07 
AnswerRe: Hyperlink in Gridview Pin
Chetan Ranpariya25-Apr-07 21:27
Chetan Ranpariya25-Apr-07 21:27 
Questionhow to bind the data from dropdownlist when dropdown is in datagrid or gridview Pin
praveenanand25-Apr-07 5:16
praveenanand25-Apr-07 5:16 
AnswerRe: how to bind the data from dropdownlist when dropdown is in datagrid or gridview Pin
xibeifeijian25-Apr-07 6:06
xibeifeijian25-Apr-07 6:06 
Use the gridview's RowCreated Event.I just write a example and tested it:
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
GridView g = (GridView)sender;
if (g.Rows.Count == 0)
{
return;
}
DropDownList ddl = (DropDownList)g.Rows[g.Rows.Count-1].FindControl("ddl");
if (ddl != null)
{
object[] array = new object[] { DateTime.Now.ToString() };
ddl.DataSource = array;
ddl.DataBind();
}
}

When you get ddl you can do it yourself.Smile | :)


Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^)
Sniff | :^) Rose | [Rose] Rose | [Rose] Rose | [Rose] Rose | [Rose] Rose | [Rose] ▒▒〓▒〓▒▒
Sniff | :^) Rose | [Rose] Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) ▒〓〓〓〓〓▒
Sniff | :^) Rose | [Rose] Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) ▒▒〓▒〓▒▒
Sniff | :^) Rose | [Rose] Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) ▒〓〓〓〓〓▒
Sniff | :^) Rose | [Rose] Rose | [Rose] Rose | [Rose] Rose | [Rose] Rose | [Rose] ▒▒〓▒〓▒▒
Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^)

GeneralRe: how to bind the data from dropdownlist when dropdown is in datagrid or gridview Pin
xibeifeijian25-Apr-07 6:17
xibeifeijian25-Apr-07 6:17 
Questiononline quiz Pin
saravanan0525-Apr-07 4:49
saravanan0525-Apr-07 4:49 
AnswerRe: online quiz Pin
enjoycrack25-Apr-07 4:57
enjoycrack25-Apr-07 4:57 
AnswerRe: online quiz Pin
Colin Angus Mackay25-Apr-07 5:16
Colin Angus Mackay25-Apr-07 5:16 
QuestionRSACryptoServiceProvider Pin
guroo1325-Apr-07 4:38
guroo1325-Apr-07 4:38 
QuestionCombo box Event catching Pin
alok_2k325-Apr-07 4:18
alok_2k325-Apr-07 4:18 
AnswerRe: Combo box Event catching Pin
guroo1325-Apr-07 4:51
guroo1325-Apr-07 4:51 
AnswerRe: Combo box Event catching Pin
Arun.Immanuel25-Apr-07 5:02
Arun.Immanuel25-Apr-07 5:02 
QuestionRAD Menu Pin
Malayil alex25-Apr-07 3:38
Malayil alex25-Apr-07 3:38 
QuestionCan you help me Pin
mghiassi25-Apr-07 3:21
mghiassi25-Apr-07 3:21 
AnswerRe: Can you help me Pin
_mubashir25-Apr-07 4:07
_mubashir25-Apr-07 4:07 
Questioncant access other classes in namespace Pin
iuliuz25-Apr-07 3:10
iuliuz25-Apr-07 3:10 
AnswerRe: cant access other classes in namespace Pin
enjoycrack25-Apr-07 4:52
enjoycrack25-Apr-07 4:52 
GeneralRe: cant access other classes in namespace Pin
iuliuz25-Apr-07 21:28
iuliuz25-Apr-07 21:28 
QuestionMembership Provider Help Needed Pin
Brendan Vogt25-Apr-07 3:04
Brendan Vogt25-Apr-07 3:04 
AnswerRe: Membership Provider Help Needed Pin
enjoycrack25-Apr-07 4:51
enjoycrack25-Apr-07 4:51 
QuestionDatabase Connection Error Pin
chaddolan25-Apr-07 3:01
chaddolan25-Apr-07 3:01 

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.