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

ASP.NET

 
AnswerRe: Opening Excel document Pin
Sathesh Sakthivel19-Jul-07 21:37
Sathesh Sakthivel19-Jul-07 21:37 
GeneralRe: Opening Excel document Pin
soneliso19-Jul-07 21:42
soneliso19-Jul-07 21:42 
GeneralRe: Opening Excel document Pin
Sathesh Sakthivel19-Jul-07 22:15
Sathesh Sakthivel19-Jul-07 22:15 
AnswerRe: Opening Excel document Pin
Sandeep Kumar19-Jul-07 21:47
Sandeep Kumar19-Jul-07 21:47 
GeneralRe: Opening Excel document Pin
soneliso20-Jul-07 0:28
soneliso20-Jul-07 0:28 
Questionneed pair of values to hold in a dropdownlist Pin
choorakkuttyil19-Jul-07 21:14
choorakkuttyil19-Jul-07 21:14 
AnswerRe: need pair of values to hold in a dropdownlist Pin
Sathesh Sakthivel19-Jul-07 21:40
Sathesh Sakthivel19-Jul-07 21:40 
GeneralRe: need pair of values to hold in a dropdownlist Pin
choorakkuttyil19-Jul-07 22:02
choorakkuttyil19-Jul-07 22:02 
let me explain...........

public object Value;
public object Value1;
public string Description;
public ValueDescriptionPair(object NewValue, string NewDescription)
{
Value = NewValue;
Description = NewDescription;
}
public ValueDescriptionPair(object NewValue, object newvalue1, string NewDescription)
{
Value = NewValue;
Value1 = newvalue1;
Description = NewDescription;
}
public override string ToString()
{
return Description;
}

----------------------------------------------------------------------
i created one value pair like this......
for that i will get a set of values which overides .Value method
----------------------------------------------------------------------
ddlCountryService.Items.Add(Convert.ToString(new NRIValueDescriptionPair.ValueDescriptionPair(dtr[0],dtr["fld_CountryId"], Convert.ToString(dtr["fld_CountryName"]))));
-----------------------------------------------------------------------
Here i could able to set the values also......
-----------------------------------------------------------------------
obj.CountryId= Convert.ToString(ddlCountryService.SelectedItem.Value);
--------------------------------------------------------------------------
but....
i couldnt able to get the value by .Value method...
it is not overriding... i did this nicely in windows apps.....dont know y its not happenning in web apps
----------------------------------------------------------------------------

hope it will be clear for you now.....
help me....Sniff | :^)
Sniff | :^) Sniff | :^) Sniff | :^) Sniff | :^)
QuestionJavascript function in a web usercontrol Pin
anujose19-Jul-07 20:54
anujose19-Jul-07 20:54 
AnswerRe: Javascript function in a web usercontrol Pin
N a v a n e e t h19-Jul-07 21:01
N a v a n e e t h19-Jul-07 21:01 
AnswerRe: Javascript function in a web usercontrol Pin
Vasudevan Deepak Kumar19-Jul-07 21:10
Vasudevan Deepak Kumar19-Jul-07 21:10 
GeneralRe: Javascript function in a web usercontrol Pin
anujose19-Jul-07 21:32
anujose19-Jul-07 21:32 
Questionstring.replace Pin
Sebastian T Xavier19-Jul-07 20:33
Sebastian T Xavier19-Jul-07 20:33 
AnswerRe: string.replace Pin
N a v a n e e t h19-Jul-07 20:39
N a v a n e e t h19-Jul-07 20:39 
GeneralRe: string.replace Pin
Sebastian T Xavier19-Jul-07 22:38
Sebastian T Xavier19-Jul-07 22:38 
AnswerRe: string.replace Pin
Vasudevan Deepak Kumar19-Jul-07 20:43
Vasudevan Deepak Kumar19-Jul-07 20:43 
GeneralRe: string.replace Pin
Sebastian T Xavier19-Jul-07 22:39
Sebastian T Xavier19-Jul-07 22:39 
AnswerRe: string.replace Pin
sathesh pandian19-Jul-07 20:45
sathesh pandian19-Jul-07 20:45 
GeneralRe: string.replace Pin
Sebastian T Xavier19-Jul-07 22:40
Sebastian T Xavier19-Jul-07 22:40 
AnswerRe: string.replace Pin
Imran Khan Pathan19-Jul-07 20:49
Imran Khan Pathan19-Jul-07 20:49 
GeneralRe: string.replace Pin
Sebastian T Xavier19-Jul-07 22:41
Sebastian T Xavier19-Jul-07 22:41 
Questiondataset Pin
abdulhaqsdcknl19-Jul-07 20:31
abdulhaqsdcknl19-Jul-07 20:31 
AnswerRe: dataset Pin
Michael Sync19-Jul-07 20:39
Michael Sync19-Jul-07 20:39 
AnswerRe: dataset Pin
N a v a n e e t h19-Jul-07 20:41
N a v a n e e t h19-Jul-07 20:41 
Questionhow to implement validatorcalloutextender in updatepanel Pin
ajithes19-Jul-07 20:19
ajithes19-Jul-07 20:19 

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.