Click here to Skip to main content
15,899,679 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionForeign caharacters Pin
gavthegenius17-May-07 1:10
gavthegenius17-May-07 1:10 
AnswerRe: Foreign caharacters Pin
Sathesh Sakthivel17-May-07 2:00
Sathesh Sakthivel17-May-07 2:00 
GeneralRe: Foreign caharacters Pin
gavthegenius17-May-07 3:05
gavthegenius17-May-07 3:05 
GeneralRe: Foreign caharacters Pin
Sathesh Sakthivel17-May-07 3:22
Sathesh Sakthivel17-May-07 3:22 
QuestionHtml tags problem in Textbox (very urgent) Pin
Faisal Khatri17-May-07 1:08
Faisal Khatri17-May-07 1:08 
AnswerRe: Html tags problem in Textbox (very urgent) Pin
abhi_viking17-May-07 1:29
abhi_viking17-May-07 1:29 
Questionhow to trace the textbox when the value is modified Pin
ramyasangeet17-May-07 0:49
ramyasangeet17-May-07 0:49 
AnswerRe: how to trace the textbox when the value is modified Pin
Sandeep Akhare17-May-07 0:59
Sandeep Akhare17-May-07 0:59 
I think one way is to crate a base class that drives TextBox class and implement OnTextChanged method in that class
<br />
 public sealed class CustomTextBoxOnTextChanged : System.Web.UI.WebControls.TextBox<br />
  {<br />
    private bool isDirty = false;<br />
<br />
    protected override void OnTextChanged(System.EventArgs e)<br />
    {<br />
      // Call the base OnTextChanged method.<br />
      base.OnTextChanged(e);<br />
<br />
      // Change the dirty flag to True.<br />
      isDirty = true;<br />
    }<br />
  }<br />
<br />


Thanks and Regards
Sandeep

If If you look at what you do not have in life, you don't have anything,
If you look at what you have in life, you have everything... "




QuestionScript page Pin
A kamath17-May-07 0:18
A kamath17-May-07 0:18 
AnswerRe: Script page Pin
Sherin Iranimose17-May-07 0:28
Sherin Iranimose17-May-07 0:28 
GeneralRe: Script page Pin
A kamath17-May-07 0:33
A kamath17-May-07 0:33 
QuestionForm authentication Pin
yaminilatha16-May-07 23:59
yaminilatha16-May-07 23:59 
AnswerRe: Form authentication Pin
enjoycrack17-May-07 0:09
enjoycrack17-May-07 0:09 
GeneralRe: Form authentication Pin
Sandeep Akhare17-May-07 0:26
Sandeep Akhare17-May-07 0:26 
GeneralRe: Form authentication Pin
enjoycrack17-May-07 0:38
enjoycrack17-May-07 0:38 
AnswerRe: datagrid Pin
enjoycrack17-May-07 0:10
enjoycrack17-May-07 0:10 
GeneralRe: datagrid Pin
enjoycrack17-May-07 0:47
enjoycrack17-May-07 0:47 
Questionhow I make this thing? Pin
deepaksringr16-May-07 23:57
deepaksringr16-May-07 23:57 
AnswerRe: how I make this thing? Pin
Christian Graus17-May-07 0:11
protectorChristian Graus17-May-07 0:11 
AnswerRe: how I make this thing? Pin
deepaksringr17-May-07 0:13
deepaksringr17-May-07 0:13 
GeneralRe: how I make this thing? Pin
Sandeep Akhare17-May-07 0:22
Sandeep Akhare17-May-07 0:22 
AnswerRe: how I make this thing? Pin
Sathesh Sakthivel17-May-07 2:02
Sathesh Sakthivel17-May-07 2:02 
QuestionWeb Service End Event Pin
rkyawal16-May-07 23:13
rkyawal16-May-07 23:13 
QuestionRe: Web Service End Event Pin
rkyawal21-May-07 2:15
rkyawal21-May-07 2:15 
QuestionHow to enable paging in FormView control? Pin
Smitha Appukuttan16-May-07 23:11
Smitha Appukuttan16-May-07 23:11 

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.