Click here to Skip to main content
15,911,141 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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 
This is aspx page:

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
<link href="css/IndigoStyle.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript" src="js/MasterPageScript.js"></script>
</head>
<body onunload="return window_onunload();">
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<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
</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
</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;</td>
</tr>
</table>
</div>
<ajaxToolkit:PopupControlExtender ID="PopupControlExtender2" runat="server" TargetControlID="SelectCompany1"
PopupControlID="p1" Position="Bottom" />
</td>
</tr>
<tr>
<td>
<div id="SelectUnit" style="display: none; background-color: #ffffff; background-image: url(background2.jpg);">
<table width="37%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="25%" class="text">
Scenario</td>
<td width="75%" align="left">
<ajaxToolkit:CascadingDropDown ID="CascadingDropDown5" runat="server" TargetControlID="ddlScenario"
Category="Scenario" PromptText="Select a Scenario" ServicePath="AutoComplete.asmx"
ServiceMethod="GetScenario" />
<asp:DropDownList ID="ddlScenario" CssClass="text" runat="server" Width="250"></asp:DropDownList>
</td>
</tr>
<tr>
<td class="text" width="25%">
&nbsp;</td>
<td align="left" width="75%">
&nbsp;</td>
</tr>
<tr>
<td >
&nbsp;</td>
<td align="Right">
<input type="button" id="btnSOK" class="button" onclick="myScenario()" value="OK" />
<input type="button" class="button" id="btnSCancel" value="Cancel" runat="server" onclick="myfunct()" />
</td>
</tr>
<tr>
<td>
&nbsp;</td>
<td align="left">
&nbsp;</td>
</tr>
</table>
</div>
<ajaxToolkit:PopupControlExtender ID="PopupControlExtender1" runat="server" TargetControlID="SelectScenario"
PopupControlID="SelectUnit" Position="Bottom" />
</td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<img alt="" src="Images/virtua-research-logo.jpg" width="259" height="70" />
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" width="100%" style="background-image: url(images/menu_bar.png);height:22px">
<tr>
<td width="1%">
</td>
<td align="center" width="8%">
<asp:Menu ID="Menu3" runat="server">
<Items>
<asp:MenuItem Text=" Home" Value="Home" NavigateUrl="~/Home.aspx" ToolTip="Home"></asp:MenuItem>
</Items>
<StaticHoverStyle CssClass="MenuOnMouseOver" />
<StaticMenuItemStyle CssClass="MenuText"/>
</asp:Menu>
</td>
<td align="center" width="8%">
<asp:Menu ID="mnFinancial" runat="server" OnMenuItemClick="mnFinancial_MenuItemClick">
<Items>
<asp:MenuItem Text="Financials" Value="Financials" ToolTip="Financials"></asp:MenuItem>
</Items>
<StaticHoverStyle CssClass="MenuOnMouseOver" />
<StaticMenuItemStyle CssClass="MenuText"/>
</asp:Menu>
</td>
<td align="center" width="8%">
<asp:Menu ID="Menu5" runat="server">
<Items>
<asp:MenuItem Text=" Analysis" Value=" Analysis" NavigateUrl="~/Home.aspx" ToolTip=" Analysis">
</asp:MenuItem>
</Items>
<StaticHoverStyle CssClass="MenuOnMouseOver" />
<StaticMenuItemStyle CssClass="MenuText"/>
</asp:Menu>
</td>
<td align="center" width="8%">
<asp:Menu ID="Menu6" runat="server">
<Items>
<asp:MenuItem Text="WatchList" Value="WatchList" NavigateUrl="~/WatchlistTab.aspx"
ToolTip="WatchList"></asp:MenuItem>
</Items>
<StaticHoverStyle CssClass="MenuOnMouseOver" />
<StaticMenuItemStyle CssClass="MenuText"/>
</asp:Menu>
</td>
<td align="center" width="8%">
<asp:Menu ID="SelectCompany1" runat="server" Orientation="Horizontal">
<Items>
<asp:MenuItem Text="Select Company" Value="Select Company" Selectable="False" ToolTip="Select Company">
</asp:MenuItem>
</Items>
<StaticHoverStyle CssClass="MenuOnMouseOver" />
<StaticMenuItemStyle CssClass="MenuText"/>
<DynamicHoverStyle />
<LevelSubMenuStyles>
<asp:SubMenuStyle Font-Underline="False" />
<asp:SubMenuStyle BackColor="DarkSlateGray" BorderColor="White" Font-Underline="False"
/>
</LevelSubMenuStyles>
<DynamicMenuItemStyle />
</asp:Menu>
</td>
<td align="center" width="8%">
<asp:Menu ID="SelectScenario" Visible="false" runat="server">
<Items>
<asp:MenuItem Text="Select Scenario" Value="Select Scenario" Selectable="False" ToolTip="Select Scenario/Unit/Currency">
</asp:MenuItem>
</Items>
<StaticHoverStyle CssClass="MenuOnMouseOver" />
<StaticMenuItemStyle CssClass="MenuText"/>
</asp:Menu>
</td>
<td align="center">
</td>
<td align="center" width="8%">
<asp:Menu ID="Menu7" runat="server" Orientation="Horizontal"
StaticEnableDefaultPopOutImage="False" Visible="False">
<Items>
<asp:MenuItem Text="Preferences" Value="Preferences" NavigateUrl="~/Home.aspx" ToolTip="Preferences"
Selectable="False">
<asp:MenuItem Text="&amp;nbsp;&amp;nbsp;&amp;nbsp; Watchlist" ToolTip="Watchlist"
Value="Watchlist" Target="Watchlist"></asp:MenuItem>
<asp:MenuItem Text="Alert" ToolTip="Alert" Value="Alert" Target="Alert"></asp:MenuItem>
<asp:MenuItem Text="Alert1" Value="Alert1" Target="Alert1" ToolTip="Alert1"></asp:MenuItem>
<asp:MenuItem Text="Alert2" Value="Alert2" Target="Alert2" ToolTip="Alert2"></asp:MenuItem>
</asp:MenuItem>
</Items>
<StaticHoverStyle CssClass="MenuOnMouseOver" />
<StaticMenuItemStyle CssClass="MenuText"/>
<DynamicHoverStyle BackColor="WhiteSmoke" BorderColor="DarkSlateGray" ForeColor="Black" />
</asp:Menu>
</td>
<td align="center" width="19%">
<asp:Menu ID="Menu8" runat="server">
<Items>
<asp:MenuItem Text="Logout" Value="Logout" NavigateUrl="~/logout.aspx" ToolTip="Logout">
</asp:MenuItem>
</Items>
<StaticHoverStyle CssClass="MenuOnMouseOver" />
<StaticMenuItemStyle CssClass="MenuText"/>
</asp:Menu>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="background-image: url(images/new top image.jpg);height:50px;width:100%">
<tr>
<td></td>
</tr>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
</asp:contentplaceholder>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td height="10px" align="right" valign="bottom" class="botline">&copy; 2007 Virtua Research Corp. All Rights Reserved.
</td>
<td>&nbsp;</td>
<td align="left" valign="bottom" class="botline">
An affiliate of <a href="http://vandham.com/home.html" target="_blank"> Vandham Securities Corp </a><br />
<a href="http://vandham.com/home.html" target="_blank">Legal Disclaimers and Disclosures Site Credit</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</form>
</body>
</html>



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 
GeneralRe: how to know user selected path for saving a file in open file dialog box Pin
here2learn15-Sep-07 0:02
here2learn15-Sep-07 0:02 
Questionhow to deploy windows service Pin
kuwl_mark14-Sep-07 1:23
kuwl_mark14-Sep-07 1:23 
AnswerRe: how to deploy windows service Pin
Sandeep Akhare14-Sep-07 2:35
Sandeep Akhare14-Sep-07 2:35 
QuestionUrgent datagrid Pin
jayarajmrj14-Sep-07 1:11
jayarajmrj14-Sep-07 1:11 
AnswerRe: Urgent datagrid Pin
Sandeep Akhare14-Sep-07 2:39
Sandeep Akhare14-Sep-07 2:39 
AnswerRe: Urgent datagrid Pin
leckey14-Sep-07 3:59
leckey14-Sep-07 3:59 
QuestionAccessing Webform control in InstantiateIn of Template Class Pin
Syed Anas Razvi14-Sep-07 1:11
Syed Anas Razvi14-Sep-07 1:11 
AnswerRe: Accessing Webform control in InstantiateIn of Template Class Pin
Sandeep Akhare14-Sep-07 2:32
Sandeep Akhare14-Sep-07 2:32 
GeneralRe: Accessing Webform control in InstantiateIn of Template Class Pin
Syed Anas Razvi14-Sep-07 21:33
Syed Anas Razvi14-Sep-07 21:33 
QuestionImage loading Pin
boyindie14-Sep-07 0:37
boyindie14-Sep-07 0:37 
AnswerRe: Image loading Pin
N a v a n e e t h14-Sep-07 21:39
N a v a n e e t h14-Sep-07 21:39 
Questiontable web server control Pin
Ballita13-Sep-07 23:40
Ballita13-Sep-07 23:40 
AnswerRe: table web server control Pin
Blue_Boy13-Sep-07 23:53
Blue_Boy13-Sep-07 23:53 

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.