Click here to Skip to main content
15,886,757 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: outlook express new message window Pin
Christian Graus14-Apr-08 23:54
protectorChristian Graus14-Apr-08 23:54 
Generalpop is not opening in a server Pin
Member 398938614-Apr-08 20:45
Member 398938614-Apr-08 20:45 
GeneralRe: pop is not opening in a server Pin
eyeseetee14-Apr-08 21:42
eyeseetee14-Apr-08 21:42 
GeneralRe: pop is not opening in a server Pin
Member 398938614-Apr-08 21:45
Member 398938614-Apr-08 21:45 
GeneralRe: pop is not opening in a server Pin
eyeseetee14-Apr-08 21:49
eyeseetee14-Apr-08 21:49 
GeneralRe: pop is not opening in a server Pin
Nouman Bhatti15-Apr-08 0:03
Nouman Bhatti15-Apr-08 0:03 
GeneralRe: pop is not opening in a server Pin
Ashish Sehajpal15-Apr-08 1:04
Ashish Sehajpal15-Apr-08 1:04 
QuestionHow to take selected value of dropdownlist in web method using cascading dropdownlist Pin
mohd imran abdul aziz14-Apr-08 20:24
mohd imran abdul aziz14-Apr-08 20:24 
Hi All,
I am using C# asp.net 2.0 and ajax1.0.
I am trying to fill dropdownlist using ajax cascading toolkit but I am not able to populate the dropdownlist.

My question is how do I take input value of parent dropdownlist in web service the fill the data that is in my senario I have subprod parent (fill on page load) and then
Prod fill on subprod selection.


The web service method I used is
public CascadingDropDownNameValue[] GetProd(string knownCategoryValues, string category)<br />
    {<br />
<br />
        StringDictionary kv = CascadingDropDown.ParseKnownCategoryValuesString(knownCategoryValues);<br />
        string subgrp = null ;<br />
      //  if (!kv.ContainsKey("PGM_GRP_CODE") || !Int32.TryParse(kv["PGM_GRP_CODE"], out subgrp))<br />
        if (!kv.ContainsKey("PGM_GRP_CODE") )<br />
        {<br />
            return null;<br />
        }<br />
     <br />
        DsprdTableAdapters.SPGETPRODUCT_GIVENSUBTableAdapter prd = new DsprdTableAdapters.SPGETPRODUCT_GIVENSUBTableAdapter();<br />
        Dsprd.SPGETPRODUCT_GIVENSUBDataTable prdgrp = prd.GetProd(subgrp);<br />
        List<CascadingDropDownNameValue> values = new List<CascadingDropDownNameValue>();<br />
        foreach (DataRow dr in prdgrp)<br />
        {<br />
            values.Add(new CascadingDropDownNameValue((string)dr["PM_PRD_NAME"], dr["PM_PRD_CODE"].ToString()));<br />
        }<br />
        return values.ToArray();<br />
<br />
     <br />
    }<br />
<br />
and <br />
cascading toolkit I definded as <br />
<br />
     <ajaxToolkit:CascadingDropDown ID="cddPROD" <br />
                                       runat="server" <br />
                                       TargetControlID="Ddlproduct" <br />
                                       ParentControlID="Ddlsubdiv" <br />
                                       Category="Prod" <br />
                                       PromptText="Choose a Product...." <br />
                                       LoadingText="Please wait ..." <br />
                                       ServicePath="../Prod.asmx" <br />
                                       ServiceMethod="GetProd" /> <br />
<br />


Pleases Suggest

regards
imran khan

QuestionLinkButton problem Pin
Soumini Ramakrishnan14-Apr-08 19:22
Soumini Ramakrishnan14-Apr-08 19:22 
GeneralRe: LinkButton problem Pin
Christian Graus14-Apr-08 19:36
protectorChristian Graus14-Apr-08 19:36 
GeneralRe: LinkButton problem Pin
Soumini Ramakrishnan14-Apr-08 20:01
Soumini Ramakrishnan14-Apr-08 20:01 
GeneralRe: LinkButton problem Pin
N a v a n e e t h14-Apr-08 20:22
N a v a n e e t h14-Apr-08 20:22 
GeneralRe: LinkButton problem Pin
Soumini Ramakrishnan14-Apr-08 20:31
Soumini Ramakrishnan14-Apr-08 20:31 
GeneralRe: LinkButton problem Pin
Nouman Bhatti14-Apr-08 21:29
Nouman Bhatti14-Apr-08 21:29 
GeneralRe: LinkButton problem Pin
eyeseetee14-Apr-08 21:38
eyeseetee14-Apr-08 21:38 
GeneralRe: LinkButton problem Pin
Soumini Ramakrishnan14-Apr-08 23:33
Soumini Ramakrishnan14-Apr-08 23:33 
Questioni want to know the number hits customers are visting Pin
ajaych14-Apr-08 19:02
ajaych14-Apr-08 19:02 
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus14-Apr-08 19:17
protectorChristian Graus14-Apr-08 19:17 
GeneralRe: i want to know the number hits customers are visting Pin
Soumini Ramakrishnan14-Apr-08 19:31
Soumini Ramakrishnan14-Apr-08 19:31 
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus14-Apr-08 19:36
protectorChristian Graus14-Apr-08 19:36 
GeneralRe: i want to know the number hits customers are visting Pin
Soumini Ramakrishnan14-Apr-08 19:49
Soumini Ramakrishnan14-Apr-08 19:49 
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus14-Apr-08 19:53
protectorChristian Graus14-Apr-08 19:53 
GeneralRe: i want to know the number hits customers are visting Pin
Soumini Ramakrishnan14-Apr-08 20:03
Soumini Ramakrishnan14-Apr-08 20:03 
GeneralRe: i want to know the number hits customers are visting Pin
N a v a n e e t h14-Apr-08 20:15
N a v a n e e t h14-Apr-08 20:15 
GeneralRe: i want to know the number hits customers are visting Pin
Christian Graus14-Apr-08 21:12
protectorChristian Graus14-Apr-08 21:12 

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.