Click here to Skip to main content
16,004,991 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Return Url Pin
N a v a n e e t h14-Sep-07 21:21
N a v a n e e t h14-Sep-07 21:21 
GeneralRe: Return Url Pin
Kasi Viswanathan16-Sep-07 20:02
Kasi Viswanathan16-Sep-07 20:02 
QuestionTell me about...? Pin
fmlove14-Sep-07 2:17
fmlove14-Sep-07 2:17 
AnswerRe: Tell me about...? Pin
Sandeep Akhare14-Sep-07 2:45
Sandeep Akhare14-Sep-07 2:45 
AnswerRe: Tell me about...? Pin
Urs Enzler14-Sep-07 3:34
Urs Enzler14-Sep-07 3:34 
QuestiongridView bind to List Pin
sangramkp14-Sep-07 2:16
sangramkp14-Sep-07 2:16 
QuestionMSI utility Pin
Blumen14-Sep-07 2:14
Blumen14-Sep-07 2:14 
QuestionWhat is the problem?? Pin
varshavmane14-Sep-07 2:13
varshavmane14-Sep-07 2:13 
Hi All,

Can any one tell me what is the problem here? I am using ASP.NET 2005 and on menu click event I need to open page which is nothing but a div tab and it contains few combo and a textbox with ok and cancel button.
Everything works fine but I need a proper GUI as it contains Country, Select Sector, select sub industry and select company this should all come in proper way as show below:

Country combo
Select Sector combo
Select Sub Industry combo
Select Company combo
textbox

But it shows something like this:

Country combo
Select
Sector combo
Select Sub
Industry combo
Select
Company combo
textbox

I want left column in one line is Select Sector should in one line.
Please help me...

Following is the code:
<div id="p1" style="display: none; background-color:#FBFBFB ;border:1px solid Blue">
<table width="40%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="text" width="250px">
Country</td>
<td>
&nbsp;</td>
<td align="left">
<ajaxToolkit:CascadingDropDown ID="CascadingDropDown1" runat="server" TargetControlID="ddlcountry"
Category="Country" PromptText="Select a Country" ServicePath="AutoComplete.asmx"
ServiceMethod="GetCountry" />
<asp:DropDownList ID="ddlcountry" CssClass="text" runat="server" Width="250px">
</asp:DropDownList>
</td>
</tr>
<tr>
<td align="left" class="text">
Sector</td>
<td>
&nbsp;</td>
<td >
<ajaxToolkit:CascadingDropDown ID="CascadingDropDown2" runat="server" TargetControlID="ddlSector"
ParentControlID="ddlcountry" Category="Sector" PromptText="Select a Sector" ServicePath="AutoComplete.asmx"
ServiceMethod="GetSector" />
<asp:DropDownList ID="ddlSector" runat="server" CssClass="text" Width="250px"> </asp:DropDownList> </td>
</tr>
<tr>
<td align="left" class="text">
Sub Industry&nbsp;
</td>
<td>
&nbsp;</td>
<td>
<ajaxToolkit:CascadingDropDown ID="CascadingDropDown3" runat="server" TargetControlID="ddlSubIndustry"
ParentControlID="ddlSector" Category="Sector" PromptText="Select a SubIndustry"
ServicePath="AutoComplete.asmx" ServiceMethod="GetSubIndustry" />
<asp:DropDownList ID="ddlSubIndustry" runat="server" CssClass="text" Width="250px"> </asp:DropDownList></td>
</tr>
<tr>
<td align="left" class="text">
Company Name&nbsp;
</td>
<td>
&nbsp;</td>
<td>
<ajaxToolkit:CascadingDropDown ID="CascadingDropDown4" runat="server" TargetControlID="ddlCompany"
ParentControlID="ddlSubIndustry" Category="Company" PromptText="Select Company"
ServicePath="AutoComplete.asmx" ServiceMethod="GetTicker" />
<asp:DropDownList ID="ddlCompany" runat="server" CssClass="text" Width="250px"> </asp:DropDownList> </td>
</tr>
<tr>
<td align="left">&nbsp;</td>
<td>
&nbsp;</td>
<td>
<asp:TextBox ID="myTextBox" runat="server" autocomplete="off"
CssClass="text" Height="14px" Width="249px">
</asp:TextBox>
<ajaxToolkit:AutoCompleteExtender runat="server" ID="autoComplete1" TargetControlID="myTextBox"
ServicePath="AutoComplete.asmx" ServiceMethod="GetCompletionList2" MinimumPrefixLength="0"
CompletionInterval="1000" CompletionSetCount="12" />
</td>
</tr>
<tr>
<td align="left">
&nbsp;</td>
<td>
&nbsp;</td>
<td>
&nbsp;</td>
</tr>
<tr>
<td align="left">
&nbsp;</td>
<td></td>
<td align="right">
<input type="button" class="button" id="btnOk" onclick="myfunct1();" value="OK" />
<input type="button" id="btnCancel" class="button" value="Cancel" runat="server" onclick="myfunct();" />
</td>
</tr>
<tr>
<td align="left">
&nbsp;</td>
<td>
&nbsp;</td>
<td align="left">
&nbsp;&nbsp;</td>
</tr>
</table>
</div>

AnswerRe: What is the problem?? Pin
Sandeep Akhare14-Sep-07 2:30
Sandeep Akhare14-Sep-07 2:30 
GeneralRe: What is the problem?? Pin
varshavmane14-Sep-07 2:38
varshavmane14-Sep-07 2:38 
GeneralRe: What is the problem?? Pin
Sandeep Akhare14-Sep-07 2:44
Sandeep Akhare14-Sep-07 2:44 
GeneralRe: What is the problem?? Pin
varshavmane14-Sep-07 2:49
varshavmane14-Sep-07 2:49 
GeneralRe: What is the problem?? Pin
Sandeep Akhare14-Sep-07 2:58
Sandeep Akhare14-Sep-07 2:58 
GeneralRe: What is the problem?? Pin
varshavmane14-Sep-07 3:06
varshavmane14-Sep-07 3:06 
GeneralRe: What is the problem?? Pin
Sandeep Akhare14-Sep-07 3:12
Sandeep Akhare14-Sep-07 3:12 
GeneralRe: What is the problem?? Pin
Sandeep Akhare14-Sep-07 3:04
Sandeep Akhare14-Sep-07 3:04 
GeneralRe: What is the problem?? Pin
varshavmane14-Sep-07 3:07
varshavmane14-Sep-07 3:07 
GeneralRe: What is the problem?? Pin
Sandeep Akhare14-Sep-07 3:16
Sandeep Akhare14-Sep-07 3:16 
GeneralRe: What is the problem?? Pin
varshavmane14-Sep-07 3:20
varshavmane14-Sep-07 3:20 
GeneralRe: What is the problem?? Pin
Sandeep Akhare14-Sep-07 3:30
Sandeep Akhare14-Sep-07 3:30 
GeneralRe: What is the problem?? Pin
varshavmane14-Sep-07 3:33
varshavmane14-Sep-07 3:33 
GeneralRe: What is the problem?? Pin
Sandeep Akhare14-Sep-07 3:57
Sandeep Akhare14-Sep-07 3:57 
GeneralRe: What is the problem?? Pin
varshavmane16-Sep-07 18:18
varshavmane16-Sep-07 18:18 
Questionhow to know user selected path for saving a file in open file dialog box Pin
here2learn14-Sep-07 1:56
here2learn14-Sep-07 1:56 
AnswerRe: how to know user selected path for saving a file in open file dialog box Pin
Sandeep Akhare14-Sep-07 2:37
Sandeep Akhare14-Sep-07 2:37 

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.