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

ASP.NET

 
AnswerRe: hi dear i want to divded frame set into rows and every rows have two coloumn on same aspx page Pin
badgrs27-Feb-07 5:16
badgrs27-Feb-07 5:16 
QuestionHow do i update a single row in datagrid Pin
www.Developerof.NET27-Feb-07 0:45
www.Developerof.NET27-Feb-07 0:45 
QuestionXML file as menu Pin
Mohammed Elkholy27-Feb-07 0:17
Mohammed Elkholy27-Feb-07 0:17 
AnswerRe: XML file as menu Pin
gauthee27-Feb-07 0:22
gauthee27-Feb-07 0:22 
QuestionBinding values to a textbox Pin
gauthee27-Feb-07 0:06
gauthee27-Feb-07 0:06 
AnswerRe: Binding values to a textbox Pin
Sandeep Akhare27-Feb-07 0:11
Sandeep Akhare27-Feb-07 0:11 
GeneralRe: Binding values to a textbox Pin
gauthee27-Feb-07 0:20
gauthee27-Feb-07 0:20 
GeneralRe: Binding values to a textbox Pin
Sandeep Akhare27-Feb-07 0:34
Sandeep Akhare27-Feb-07 0:34 
i think you will have to overload that databind method
i have not done it but see following code as a sample
object bound_value_obj = null;
Control ctrl = (Control)sender;
IDataItemContainer data_item_container = (IDataItemContainer)ctrl.NamingContainer;
bound_value_obj = DataBinder.Eval(data_item_container.DataItem, FieldName);

switch (ItemType)
{
case ListItemType.Item:
Label field_ltrl = (Label)sender;
field_ltrl.Text = bound_value_obj.ToString();

break;
case ListItemType.EditItem:
TextBox field_txtbox = (TextBox)sender;
field_txtbox.Text = bound_value_obj.ToString();

break;
}

<l>Thanks and Regards
Sandeep

GeneralRe: Binding values to a textbox Pin
Sandeep Akhare27-Feb-07 0:41
Sandeep Akhare27-Feb-07 0:41 
QuestionHow to get Currency Symbols of various countries. Pin
Spunky Coder26-Feb-07 23:55
Spunky Coder26-Feb-07 23:55 
Questionimage properties Pin
shah zad26-Feb-07 23:49
shah zad26-Feb-07 23:49 
AnswerRe: image properties Pin
gauthee27-Feb-07 0:11
gauthee27-Feb-07 0:11 
AnswerRe: image properties Pin
Naveed Kamboh27-Feb-07 1:04
Naveed Kamboh27-Feb-07 1:04 
Questionweb page problem with offshore network Pin
Bhasker Pinninti26-Feb-07 23:39
Bhasker Pinninti26-Feb-07 23:39 
AnswerRe: web page problem with offshore network Pin
Sandeep Akhare27-Feb-07 1:38
Sandeep Akhare27-Feb-07 1:38 
Questionhow to use webpart Pin
nikhil123426-Feb-07 23:37
nikhil123426-Feb-07 23:37 
AnswerRe: how to use webpart Pin
Sendilkumar.M27-Feb-07 0:24
Sendilkumar.M27-Feb-07 0:24 
GeneralRe: how to use webpart Pin
nikhil123427-Feb-07 0:28
nikhil123427-Feb-07 0:28 
GeneralRe: how to use webpart Pin
Sendilkumar.M27-Feb-07 16:37
Sendilkumar.M27-Feb-07 16:37 
QuestionFrontpage Validation Pin
vnss26-Feb-07 23:19
vnss26-Feb-07 23:19 
AnswerRe: Frontpage Validation Pin
Sylvester george27-Feb-07 1:31
Sylvester george27-Feb-07 1:31 
GeneralRe: Frontpage Validation Pin
vnss28-Feb-07 19:23
vnss28-Feb-07 19:23 
AnswerRe: Frontpage Validation Pin
Sandeep Akhare27-Feb-07 1:36
Sandeep Akhare27-Feb-07 1:36 
GeneralRe: Frontpage Validation Pin
vnss28-Feb-07 19:17
vnss28-Feb-07 19:17 
Questionhow to redirect url through IIS Pin
monuSaini26-Feb-07 23:17
monuSaini26-Feb-07 23:17 

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.