Click here to Skip to main content
15,914,221 members
Home / Discussions / ASP.NET
   

ASP.NET

 
General[Message Deleted] Pin
rajkumar.315-Apr-08 21:37
rajkumar.315-Apr-08 21:37 
GeneralRe: armotization calculator Pin
eyeseetee15-Apr-08 21:41
eyeseetee15-Apr-08 21:41 
Generalerror create new connection Pin
shee_dee8615-Apr-08 21:10
shee_dee8615-Apr-08 21:10 
GeneralRe: error create new connection Pin
eyeseetee15-Apr-08 21:35
eyeseetee15-Apr-08 21:35 
GeneralRe: error create new connection Pin
Expert Coming15-Apr-08 23:01
Expert Coming15-Apr-08 23:01 
Questionhow to add a new row to an exiting html table control . Pin
lakshmichawala15-Apr-08 20:37
lakshmichawala15-Apr-08 20:37 
AnswerRe: how to add a new row to an exiting html table control . Pin
Christian Graus15-Apr-08 21:04
protectorChristian Graus15-Apr-08 21:04 
GeneralRe: how to add a new row to an exiting html table control . Pin
lakshmichawala15-Apr-08 21:08
lakshmichawala15-Apr-08 21:08 
GeneralRe: how to add a new row to an exiting html table control . Pin
Christian Graus15-Apr-08 21:14
protectorChristian Graus15-Apr-08 21:14 
AnswerRe: how to add a new row to an exiting html table control . Pin
N a v a n e e t h15-Apr-08 21:04
N a v a n e e t h15-Apr-08 21:04 
Questionhow to write web config file in WebPartManager Pin
sugunavathysubramanian15-Apr-08 20:32
sugunavathysubramanian15-Apr-08 20:32 
Generali want to rotate images using ajax animation control Pin
ajaych15-Apr-08 20:00
ajaych15-Apr-08 20:00 
GeneralRe: i want to rotate images using ajax animation control Pin
Christian Graus15-Apr-08 21:04
protectorChristian Graus15-Apr-08 21:04 
GeneralGetting Error while uploading file using Fileupload control Pin
Satish - Developer15-Apr-08 19:46
Satish - Developer15-Apr-08 19:46 
GeneralRe: Getting Error while uploading file using Fileupload control Pin
N a v a n e e t h15-Apr-08 20:48
N a v a n e e t h15-Apr-08 20:48 
GeneralHello Friends Pin
ArunVijay15-Apr-08 19:41
ArunVijay15-Apr-08 19:41 
GeneralRe: Hello Friends Pin
N a v a n e e t h15-Apr-08 20:50
N a v a n e e t h15-Apr-08 20:50 
GeneralSame Session in different IE windows Pin
AlexeiXX315-Apr-08 19:03
AlexeiXX315-Apr-08 19:03 
GeneralRe: Same Session in different IE windows Pin
N a v a n e e t h15-Apr-08 21:02
N a v a n e e t h15-Apr-08 21:02 
Generalproblem with getting SELECTED VALUE of parent dropdownlist to target dropdownlist using cascading Pin
mohd imran abdul aziz15-Apr-08 18:16
mohd imran abdul aziz15-Apr-08 18:16 
Hi All,
I am using C# , asp.net2.0 , Ajax1.0
i am filling dropdownlist using cascading ajax extender. i taken help of ajax site and build a code to fill the control.
my question is how do i get parent selected item value. my web service code to fill target value
<code> public CascadingDropDownNameValue[] GetProd(string knownCategoryValues , string category)
{
StringDictionary kv = CascadingDropDown.ParseKnownCategoryValuesString(knownCategoryValues);
//string subgrp ;
//int sub1;
//if (!kv.ContainsKey("Prod") || !Int32.TryParse(kv["Prod"], out sub1))
//// if (!kv.ContainsKey("Prod"))
//{
// return null;
//}

DsprdTableAdapters.SPGETPRODUCT_GIVENSUBTableAdapter prd = new DsprdTableAdapters.SPGETPRODUCT_GIVENSUBTableAdapter();
Dsprd.SPGETPRODUCT_GIVENSUBDataTable prdgrp = prd.GetProd(kv["Prod"]);
List&lt;CascadingDropDownNameValue&gt; values = new List&lt;CascadingDropDownNameValue&gt;();
foreach (DataRow dr in prdgrp)
{
values.Add(new CascadingDropDownNameValue((string)dr["PM_PRD_NAME"], dr["PM_PRD_CODE"].ToString()));
}
return values.ToArray();
}
</code>
This is giving me no out put as kv["Prod"] is showing null value.
Cascading code in aspx is
<code>&lt;ajaxToolkit:CascadingDropDown ID="cddPROD"
runat="server"
TargetControlID="Ddlproduct"
ParentControlID="Ddlsubdiv"
Category="Prod"
PromptText="Choose a Product...."
LoadingText="Please wait ..."
ServicePath="../Prod.asmx"
ServiceMethod="GetProd" /&gt;
Please Suggest
</code>

regards
imran khan
GeneralPassing parameters to another page from GridView Pin
Ekjon15-Apr-08 12:08
Ekjon15-Apr-08 12:08 
GeneralRe: Passing parameters to another page from GridView Pin
AlexeiXX315-Apr-08 16:08
AlexeiXX315-Apr-08 16:08 
QuestionRuntime Error after publishing aspx page!!! Pin
Phivos Stylianides15-Apr-08 9:49
Phivos Stylianides15-Apr-08 9:49 
GeneralRe: Runtime Error after publishing aspx page!!! Pin
pmarfleet15-Apr-08 11:48
pmarfleet15-Apr-08 11:48 
GeneralRe: Solution To Solve By ArunVijay Pin
ArunVijay15-Apr-08 20:02
ArunVijay15-Apr-08 20:02 

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.