Click here to Skip to main content
15,888,984 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Human Testing Pin
#realJSOP20-Oct-11 12:15
mve#realJSOP20-Oct-11 12:15 
QuestionMembership.ValidateUser port to user tables Pin
nitin_ion19-Oct-11 19:19
nitin_ion19-Oct-11 19:19 
AnswerRe: Membership.ValidateUser port to user tables Pin
Brij19-Oct-11 20:13
mentorBrij19-Oct-11 20:13 
AnswerRe: Membership.ValidateUser port to user tables Pin
rajendra pratap singh20-Oct-11 1:05
rajendra pratap singh20-Oct-11 1:05 
Questionasp.net web table problem Pin
classy_dog19-Oct-11 11:11
classy_dog19-Oct-11 11:11 
AnswerRe: asp.net web table problem Pin
Brij19-Oct-11 19:55
mentorBrij19-Oct-11 19:55 
GeneralRe: asp.net web table problem Pin
classy_dog20-Oct-11 4:16
classy_dog20-Oct-11 4:16 
Questionasp.net 2010 table control problem Pin
Member 821751719-Oct-11 10:10
Member 821751719-Oct-11 10:10 
I am having the following problems with a C# asp.net 2010 checkboxlist control that I drag from the toolbox onto the designer or source view.
1. When I drag the checkbox list control to be embedded within an asp.net table in either the desginer or source view, I do not see all all the options for the smart tag like to connect to the datasource.
2. When I drag the checkbox list into the designer or source view and outside of a web table control, I do see the data source control. However, I have the following problems:
a. The wizard does not see the linq controls that are in the master page.Do you know of a way for the wizard to see the datasource in the master page? If so, how do you accomplish this task?
b.Thus I create a new datasource and select the appropriate datacontext object. However when I want to connect the checkbox list object with a textbox for a where statement, there is not an option to find the textbox I am looking for. The only selection option is the checkbox list itself. The textbox I want to obtain the value from is embedded within the asp.net table.

Thus basically can you make a suggestion how the checkbox list control can obtain the value in the textbox? Is the problem due to embedding the controls in an asp.net table?

The folllowing is the code I am referring to:

^<asp:Content ID="Content4" ContentPlaceHolderID="ReportForm" runat="server">
<ajx:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server" EnablePartialRendering="true">
</ajx:ToolkitScriptManager>
<asp:UpdatePanel ID="AttUploadUpdatePanel" runat="server">
<ContentTemplate>
<table style="width: 100%;">
<tr>
<td>
<table style="width: 50%;">
<tr>
<td width="100px" rowspan="5">
</td>
</tr>
</table>
</td>
<asp:Table ID="uploadAttb" runat="server" Height="35px" HorizontalAlign="Center"
Width="50%">
<asp:TableRow ID="trTitle" runat="server" HorizontalAlign="Center">
<asp:TableCell runat="server" RowSpan="2" ColumnSpan="4" VerticalAlign="Top" HorizontalAlign="Center">
<div>
<asp:RangeValidator ID="RangeValidator2" runat="server" Type="Date" CssClass="errorStyle"
ControlToValidate="txtReceiveDate" ErrorMessage="Receive Date must be in mm/dd/yyyy format and be a valid Date"
MaximumValue="12/31/2100" MinimumValue="01/01/1990" Display="Dynamic"></asp:RangeValidator>
</div>
<asp:Label ID="Label1" runat="server" CssClass="RptPageTitle" Text="Att View" />
</asp:TableCell></asp:TableRow>
<asp:TableRow runat="server" ColumnSpan="2">
<asp:TableCell runat="server">
<asp:Label ID="lblResultMsg" runat="server" CssClass="msgStyle" />
<asp:Label ID="lblErrorMsg" runat="server" CssClass="errorStyle" />
</asp:TableCell></asp:TableRow>
<asp:TableRow runat="server">
<asp:TableCell runat="server" HorizontalAlign="Right">
<asp:Label ID="Lable2" runat="server" Text="Organization Name" CssClass="RptFormLabel" />
</asp:TableCell><asp:TableCell runat="server" HorizontalAlign="Left">
<asp:TextBox ID="txtOrgID" Visible="false" Enabled="true" runat="server" Width="100"
MaxLength="10" />
<asp:TextBox ID="txtOrgName" runat="server" Width="250" CssClass="TextBoxStyle" OnTextChanged="FindOrg"
AutoPostBack="true" MaxLength="100" />&nbsp;
<ajx:AutoCompleteExtender ID="AutoCompleteAtt" runat="server" CompletionListCssClass="AjaxListStyle"
TargetControlID="txtOrgName" ServiceMethod="GetList" ServicePath="Att.aspx"
MinimumPrefixLength="1" CompletionInterval="200" CompletionSetCount="10">
</ajx:AutoCompleteExtender>
</asp:TableCell></asp:TableRow>
<asp:TableRow runat="server" Visible="true">
<asp:TableCell ID="TableCell4" runat="server" HorizontalAlign="Right">
<asp:CheckBoxList ID="CheckBoxList2" runat="server">
</asp:CheckBoxList>
</asp:TableCell></asp:TableRow>
<asp:TableRow ID="TableAttReceiveDate" runat="server" Visible="true">
<asp:TableCell ID="TableCell1" runat="server" HorizontalAlign="Right">
<asp:Label ID="Label3" runat="server" Text="Received Date" CssClass="RptFormLabel" />
</asp:TableCell><asp:TableCell ID="CellReceiveDate" runat="server" HorizontalAlign="Left">
<asp:TextBox ID="txtReceiveDate" CssClass="TextBoxStyle" Enabled="true" runat="server"
Width="150" MaxLength="100" AutoPostBack="true" />
<ajx:CalendarExtender ID="CalendarExtender1" runat="server" Enabled="True" TargetControlID="txtReceiveDate">
</ajx:CalendarExtender>
</asp:TableCell></asp:TableRow>
<asp:TableRow ID="TableRowDisrpt" runat="server" Visible="true">
<asp:TableCell ID="TableCellDirRpt" runat="server" HorizontalAlign="Right">
<asp:Label ID="Label4" runat="server" Text="Reports Provided " CssClass="RptFormLabel" />
</asp:TableCell><asp:TableCell ID="TableCell2" runat="server" HorizontalAlign="Left">
<asp:DropDownList ID="ddlDisRpt" runat="server" CssClass="TextBoxStyle" Width="155">
<asp:ListItem Text="NO" Value="N" Selected="True" />
<asp:ListItem Text="YES" Value="Y" />
</asp:DropDownList>
</asp:TableCell></asp:TableRow>
</asp:Table>
</td></table>
</ContentTemplate>
</asp:UpdatePanel>
</asp:Content>^
QuestionOpen multiple pdfs in html page Pin
vanikanc19-Oct-11 5:24
vanikanc19-Oct-11 5:24 
AnswerRe: Open multiple pdfs in html page Pin
Dennis E White19-Oct-11 7:13
professionalDennis E White19-Oct-11 7:13 
GeneralRe: Open multiple pdfs in html page Pin
Bernhard Hiller19-Oct-11 20:11
Bernhard Hiller19-Oct-11 20:11 
QuestionOpen PDF in New Window from Code Behind using JavaScript Pin
NTheOne18-Oct-11 23:22
NTheOne18-Oct-11 23:22 
AnswerRe: Open PDF in New Window from Code Behind using JavaScript Pin
JP_Rocks19-Oct-11 3:08
JP_Rocks19-Oct-11 3:08 
AnswerRe: Open PDF in New Window from Code Behind using JavaScript Pin
jkirkerx28-Oct-11 20:26
professionaljkirkerx28-Oct-11 20:26 
QuestionCommand line for 'Convert to Web Application' option in Visual Studio Pin
ravidhari18-Oct-11 21:13
ravidhari18-Oct-11 21:13 
QuestionSingle Sign On Pin
berba18-Oct-11 20:52
berba18-Oct-11 20:52 
AnswerRe: Single Sign On Pin
Simon Bang Terkildsen19-Oct-11 6:18
Simon Bang Terkildsen19-Oct-11 6:18 
Questionany one can tell how get confirmation mail after user registration in asp.net c# Pin
sheemap18-Oct-11 20:44
sheemap18-Oct-11 20:44 
AnswerRe: any one can tell how get confirmation mail after user registration in asp.net c# Pin
David Mujica19-Oct-11 3:45
David Mujica19-Oct-11 3:45 
GeneralRe: any one can tell how get confirmation mail after user registration in asp.net c# Pin
AjayKumar Pal20-Oct-11 3:50
AjayKumar Pal20-Oct-11 3:50 
QuestionI want to force webpage to IE9 compability mode. Pin
buffering8318-Oct-11 13:36
buffering8318-Oct-11 13:36 
AnswerRe: I want to force webpage to IE9 compability mode. Pin
Anuj Banka18-Oct-11 19:04
Anuj Banka18-Oct-11 19:04 
QuestionHorizontal Scrollbar, GridView and Styles Pin
paas18-Oct-11 8:47
paas18-Oct-11 8:47 
AnswerRe: Horizontal Scrollbar, GridView and Styles Pin
Anuj Banka18-Oct-11 19:22
Anuj Banka18-Oct-11 19:22 
GeneralRe: Horizontal Scrollbar, GridView and Styles Pin
paas19-Oct-11 1:16
paas19-Oct-11 1:16 

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.