Tagged Questions
The servercontrols tag has no wiki summary.
13
votes
5answers
6k views
ASP.NET Control to HTML tag equivalent
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> and ...
5
votes
2answers
457 views
Why do ASP.Net server control declarations require the runat=“server” attribute?
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 ...
5
votes
7answers
20k views
Change Text Box Color using Required Field Validator. No Extender Controls Please
I need to change color of TextBox whenever its required field validator is fired on Clicking the Submit button
4
votes
1answer
100 views
Creating a simple templated control. Having issues
I'm trying to create a really simple templated control. I've never done it before, but I know a lot of my controls I have created in the past would have greatly benefited if I included templating ...
4
votes
1answer
47 views
ASP.NET Server Controls and <%$ %> params like ConnectionStrings
Is there a complete list of the objects you can tap into with <%$ %> tags in ASP.NET
I know you can do things like <%$ ConnectionStrings:northwind %> in the ConnectionString attribute of the ...
4
votes
4answers
534 views
Always use SUBCLASSES of ASP.NET server controls? If not, why not?
In my pre-ASP.NET development environment, there was a near-universal best practice:
* NEVER use the native controls!
* Instead, subclass ALL the controls, and ALWAYS use the subclassed version.
...
4
votes
2answers
542 views
Is there any way to declaratively pass code-behind property values to server controls?
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">
...
4
votes
3answers
2k views
How to create ASP.NET user/server control that uses a list of asp:ListItem as child controls?
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" />
...
4
votes
5answers
877 views
How do I make my ASP.NET server control take an embedded code block as a property value?
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='<%= ...
3
votes
3answers
224 views
Test output from HtmlTextWriter
Quite simply I want to be able to test that a Asp.Net web forms server control is outputting the correct Html as it will be building dynamic content. I'm just starting to create the control and ...
3
votes
3answers
61 views
Can I automatically attach to the lifecycle of ANY server-enabled HTML tag?
If a "server-enabled" HTML tag is in a Web form, like this --
<p runat="server"/>
-- is there any way for me to attach to its rendering? I assume once they have runat="server", they must ...
3
votes
2answers
112 views
ASP .NET confusion - server controls
I have read through the information in this question: http://stackoverflow.com/questions/22084/asp-net-aspxxx-controls-versus-standard-html but am still rather confused.
The situation was I was asked ...
3
votes
1answer
251 views
ScriptControlDescriptor.AddProperty & Read-Only Properties
I'm creating an ASP.NET Server Control with an associated client-side API.
In my GetScriptDescriptors() method I'm associating a property called "rows"...
descriptor.AddProperty("rows", ...
3
votes
1answer
95 views
Is there a performance difference between custom server controls and user controls?
Consider two controls that do basically the same things. For instance, a gridview-like-widget with paging, sorting, and data caching. Both bound with the same 10,000 row data source. One is a custom ...
3
votes
2answers
1k views
ASP.net Page object null when invoking it from within templated control
I created a control that uses an ITemplate internally in order to allow the user to add its own stuff.
<my:MyControl id="myControl" runat="server">
<Content>
//some stuff in ...
3
votes
2answers
2k views
Convert User Controls to Server Controls
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. ...
3
votes
1answer
2k views
ASP.net weekly schedule control
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
...
3
votes
3answers
4k views
Using HtmlTextWriter to Render Server Controls?
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 ...
3
votes
4answers
2k views
ASP.Net web server control that generates HTML and Excel
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 ...
3
votes
3answers
2k views
Creating an asp:Button programatically?
I'm using my code-behind page to create a save button programatically:
Button btnSave = new Button();
btnSave.ID = "btnSave";
btnSave.Text = "Save";
However I think this must create an ...
3
votes
3answers
2k views
Excel like server side control for ASP.NET
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 really ...
2
votes
1answer
301 views
Call Asp.Net webforms server control method using jQuery .ajax method
I'm trying to create a web forms server control and really wanted to leverage jQuery to handle the client side interaction.
So far I've not found any examples to being able to directly call a server ...
2
votes
2answers
419 views
Add children controls within a ServerControl tags?
I'm working on a Navigation Menu.
I've created below ServerControl and it works, but I want to allow users adding some standard ASP.NET controls within my ServerControl Tags like label, image and so ...
2
votes
4answers
1k views
Problems in the global namespace when I try to use my custom server control (in the App_Code directory)
Traditionally I use the regular asp.net website (created using the File > New Website). Recently, I opted to work off of a full fledged project (created using File > New Project > ASP.net Web ...
2
votes
2answers
615 views
ASP.Net LinkButton CommandArgument property ignores <%= .. %>
I'm trying to do what I thought was a very simple operation to set a property on an ASP.Net LinkButton control but for some reason ASP.Net is ignoring the tags and just passing through the value as a ...
2
votes
3answers
212 views
Content within a user control
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.
...
2
votes
2answers
38 views
Are the Internet Explorer Web Controls IE only?
Recently, I came across a set of Internet Explorer Web Controls from Microsoft. These look to me to be older controls from the pre-standards era of Microsoft's asp.net development. I'm curious as to ...
2
votes
3answers
88 views
How to set specific ID for server controls in an ASP.NET Web Form that is using a MasterPage?
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" ...
2
votes
1answer
102 views
CssClass and default images in ServerContol
I'm writing a ServerControl in ASP.NET 3.5, and I'm exposing CssClass, so the user can manipulate the visual appearance of the control. My problem is that I want to establish reasonable defaults, so ...
2
votes
1answer
235 views
ASP.NET event wiring does not work correctly if the page has many controls in IE8 native mode
Well, it looks like IE8 in native mode doesn't like ASP.NET event wiring. I have few heavy pages developed in ASP.NET 2.0. By heavy I mean having lots of server controls and callback controls. The ...
2
votes
3answers
665 views
Server controls in an asp.net repeater
Seems like I've ran into a wall here. I want some datasource to be bound to an asp.net repeater (well, doesn't have to be a repeater, but it seems like that's what I want). Now, here's the catch: I ...
2
votes
7answers
415 views
The correct pattern for passing data to child controls in a server control
I'm working with a 3rd party system to implement some forms in a website.
The 3rd party system provides me with XML definitions for these forms.
e.g.
<form>
<segment>
...
2
votes
1answer
136 views
How to test asp.net server controls
We have developed a number of ASP.Net server controls and we need to test them. I want to instantiate a control, set some properties, call CreateChildControls and test the control-hierarchy.
I run ...
2
votes
4answers
4k views
Looking for a room booking/hire calendar control for ASp.NET
I'm looking to implement a room booking calendar using ASP.NET
Before I go coding the whole thing myself I thought I'd ask to see if anyone knows of any good free or commercial components that do the ...
1
vote
1answer
46 views
Using ASP.Net Web Databound Controls to create Jquery Sliders tickers type controls
I am working on a B2B portal web app, where i need to display upcoming news , products and company info on regular interval (say as slideshows and tickers).
For example :
Scenario 1. I need to ...
1
vote
2answers
63 views
Is it possible to access server control from page method?
I would like to update a Gridviews datasource using JQuery and page methods, but I'm not sure how to access the Gridview control I created on the page. I know I can't access the instance of it, but I ...
1
vote
2answers
38 views
How to retrieve style of the HTML server control programmatically?
Suppose i'm having <div> tag with id="toggleText" & runat="Server" then i can change style attributes by using following -
toggleText.Style.Add("Display", "block");
But if i want to ...
1
vote
1answer
308 views
calling a public function of an asp.net ajax server control from client side
I want to make a ajax server control in ASP.NET and in that application I have a textbox and I want to send text of that textbox to function that is created in ASP.NET ajax server control class and ...
1
vote
0answers
157 views
Recursive Function for Server Control Collection of subitems
I have control that has a list of items with subitems. I need to have a recursive function that collects the sub items.
e.g How do I collect and iterate this collection that has sub items?
is an ...
1
vote
5answers
348 views
ASP.NET Server Control Property Attribute must be required
I have a custom ASP.NET server control CustomControl with a property attribute Path.
If the Path is not explicitly specified, then I want an exception to be thrown.
For example,
...
1
vote
3answers
255 views
ASP.NET (webforms): Using with MINIMAL server controls and substituting with JQUERY?
I am currently working with ASP.NET and the person who designed the form has used all Server Controls for things like TextBoxes and Dropdowns etc when really they are not providing postbacks.. Some ...
1
vote
2answers
131 views
ASP.NET Gridview - What property exists to find out if the grid renders or not?
When there is no DataSource assigned to my grid it doesn't render which is great!
When the datasource is empty it doesn't render - also great :-)
I am implementing some custom navigation so i want ...
1
vote
1answer
366 views
ASP.NET Extending the gridview to Show a navigation bar at underneath the gridview?
I have developed an asp.net control that inherits from the gridview and its called gridviewex... i need some page navigation stuff to render underneath it for some custom paging that i am implenting.. ...
1
vote
1answer
385 views
Problem in creating a ServerControl in ASP.NET , C#?
I'm working on a ServerControl (SuperFish Menu).
Below is my codes.
Menu.cs
[AspNetHostingPermission(SecurityAction.Demand, Level = AspNetHostingPermissionLevel.Minimal)]
...
1
vote
1answer
1k views
Add <Script … /> tag within <Head … /> tag in ServerControl (ASP.NET)?
I'm gonna use JQuery files in my custom ServerControl , thus I have to add below line within Head tag.
<script type="text/javascript" src="jquery-1.4.3.min.js"></script>
How can I do it ...
1
vote
3answers
1k views
Gridview in asp.net mvc2
I need to use ASP.Net gridview and do operations like sorting paging and selecting checkboxes in my asp.net mvc content view. I dont what to do. I've written something like this:
<asp:Content ...
1
vote
1answer
422 views
Prevent wrapping <span> tags for ASP.NET server control
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, ...
1
vote
0answers
62 views
How does ASP.Net ensure the correct binding order of internally-bound controls?
If I have something like this:
<asp:Repeater DataSource='<%# new List<string>() { 'Tom', 'Dick', 'Harry' } %>' Visible='<%# DataTime.Now.Days == 1 %>' runat="server">
How ...
1
vote
1answer
118 views
ASP.Net Templated Server Controls difference between UpdatePanel and other controls
Using the advise given on this post...
http://stackoverflow.com/questions/2908260/creating-an-asp-net-templated-server-control
... I was able to create a nice templated server control.
However, ...
1
vote
2answers
168 views
Page containing Microsoft Chart Control returns Service Unavailable
I have a frustrating problem with an asp.net mvc view containing the Microsoft Chart control. When I request the view containing the control I get the following error.
Service Unavailable
...