servercontrols Questions
17
I need to change color of TextBox whenever its required field validator is fired on Clicking the Submit button
Burrows asked 13/10, 2008 at 6:35
5
Solved
I'm looking for a cheat sheet that will allow me to show an HTML designer the equivalent asp.net controls for standard HTML tags. As an example the <asp:Panel> will render as an HTML <div> an...
Holman asked 20/1, 2009 at 15:59
3
Solved
I'm wondering if anyone has any experience converting User controls to Web controls?
Ideally, I'd like to offload some of the design work to others, who would give me nicely laid out User Controls...
Weinberg asked 1/6, 2009 at 15:59
4
Solved
I am writing various ASP.NET Server controls and am needing to remove the tags that wrap my control by default. I am aware that you can change the tag to a different tag (as in this question, How D...
Lymn asked 30/9, 2010 at 15:41
4
I have a server control as a class within my MySite assembly (i.e., my site's project not only contains aspx files but also contains server controls which those aspx files reference). I use the fol...
Flagon asked 26/4, 2012 at 22:6
3
Solved
Can anyone explain why you can’t use inline code blocks within server control declarations in ASP.Net?
The following is a simple example...
....
<form id="form1" runat="server">
<asp:La...
Mousse asked 13/8, 2009 at 10:29
4
Solved
I have a project and I am trying to register a custom server control (there is no .ascx file) on the page. I am currently using
Class Declaration
namespace MyApp.Controls{
public class CustomCo...
Nationalist asked 11/3, 2011 at 17:54
6
How do I get the ID of a server control with jQuery?
E.g. I have
<asp:Label ID="label1" runat="server""></asp:Label>
and now I want to get "label1",
var id = ??
Roustabout asked 14/4, 2011 at 15:54
3
Solved
We have a requirement to increase the functionality of a grid we are using to edit on our webapp, and our manager keeps citing Excel as the perfect example for a data grid :/ He still doesn't reall...
Blockish asked 12/9, 2008 at 4:18
3
Solved
I am almost too embarrassed to ask this question, but here we go...
I am not an expert with user controls, and need some design advise regarding trying to achieve a specific desired functionality....
Buffon asked 24/9, 2010 at 20:12
3
Solved
Is it possible to set a specific ID on an ASP.NET server control? Everytime I assign an ID and run the web form the ID changes.
For Example:
<asp:TextBox ID="txtName" runat="server"></a...
Riviera asked 21/7, 2010 at 22:45
1
Solved
Surely the fact that they're declared beginning with "<asp:" is enough to infer they're server controls? Or is it just included for completeness (so they look similar to the server control decla...
Assignee asked 17/7, 2009 at 14:50
5
Solved
I have a custom server control with a property of Title. When using the control, I'd like to set the value of the title in the aspx page like so:
<cc1:customControl runat="server" Title='<%=...
Jauregui asked 22/12, 2008 at 19:56
4
I am developing a web application that contains a great deal of reporting. The reports are fairly basic, but some have multiple datasets or embedded charts. One of the key requirements is that each...
Harden asked 25/10, 2008 at 10:4
2
Solved
I am looking to create a user/server control that will be created with something like the following:
<my:MyListControl runat="server">
<asp:ListItem Text="Test1" Value="Test1" />
<...
Ovovitellin asked 27/4, 2009 at 17:35
1
Solved
Can anyone recommend a free asp.net control that I can use for the following:
Weekdays Monday-Saturday along the top row
Time of day along left hand side
Template fields for the actual data
Datab...
Ignorant asked 31/3, 2009 at 12:56
3
Solved
I'm writing the RenderContents() method of my ASP.NET server control. The method uses an HtmlTextWriter object to render the output content. For the control I'm writing, using the HtmlTextWriter's ...
Asymptote asked 28/1, 2009 at 22:26
3
Solved
I'm using my code-behind page to create a save button programmatically:
Button btnSave = new Button();
btnSave.ID = "btnSave";
btnSave.Text = "Save";
However I think this must create an html ...
Lymphoid asked 9/10, 2008 at 16:14
1
© 2022 - 2024 — McMap. All rights reserved.