The custom-server-controls tag has no wiki summary.
0
votes
1answer
14 views
Postback delegate is null
I am building server control with custom events and as example used this MSDN reference.But events are never fired while postback - clickEventDelegate is always null:
if (clickEventDelegate != ...
0
votes
1answer
32 views
handle click event custom server control
I have control with imagebutton:
...
ImageButton btn;
public MyControl()
{
btn = new ImageButton();
}
protected override void OnInit(EventArgs e)
{
...
0
votes
0answers
22 views
determine postback element from custom control: imagebutton
How can I determine which button caused a postback and get postback value?Here is server control code:
(--- dumm for mostly code question --- dumm for mostly code question --- dumm for mostly code ...
0
votes
0answers
35 views
Embedded Images In Server Control
I have ASP.NET custom server control, that includes js, css and png images.
I can read and render embedded js, css and the images.
How to get the embedded image url (not binary stream) and set it for ...
1
vote
1answer
42 views
adding web methods to custom server control
I have created a server user control that I want it to be able to use a WebMethod. If the web method is in my main application (as an ASMX file), it works fine. The problem is that I want to include ...
0
votes
3answers
99 views
change class of li from server side in custom control
Hi i have created a server control which consists of <UL> and its <LI>
I just wanted to reuse my menu in all six pages
below is controls code
Asp Code
<%@ Control Language="C#" ...
0
votes
1answer
46 views
Simple Example of Custom ASP.NET Server Control with JavaScript?
I've been trying, unsuccessfully, to create a custom server control that can allow me to take advantage of ViewState and AutoPostBack. What is tricky is that my control is a combination of HTML and ...
0
votes
3answers
140 views
How to use <%=control.ClientID%> in server control with embedded JS file
I am creating a server control in a library project, which has javascript code, the javascript code need to get a button's ID, so I used <%= button.ClientID %>. Then I embed the javascript code as ...
1
vote
1answer
36 views
How can i modify a dropdownlist to have buttons on each item row? and a textbox after the last row?
I wish to modify the DDL to have a button on this far right of each item row where the user can remove that item by clicking on it.
I also wish to add a textbox to a row after the last item row where ...
1
vote
0answers
162 views
Custom GridView Server Control DataBind causes duplicate control ID's error
OK. I've long used this site as a reference, but I've now hit a wall of my own.
I am creating a custom server control which inherits from the System.Web.UI.WebControls.GridView class. It's purpose ...
0
votes
0answers
124 views
Inherit from asp.net control: how to add a custom attribute with ViewState support
I have an ASP.NET custom server control which inherits from LinkButton. It adds a custom attribute, which appears correctly on the client side as data-attribute="value" inside the anchor tag. So far ...
1
vote
1answer
129 views
Developing custom asp.net server control rendering scripting code
I have a server control as below:
[DefaultProperty("ContentKey")]
[ToolboxData("<{0}:ContentRating runat=server></{0}:ContentRating>")]
public class ContentRating : WebControl
...
2
votes
0answers
106 views
asp.net server control not saving state properly
I am trying to create an ASP.net server control that uses controls from the AjaxControlToolkit. Essentially, the control is a dropdownlist and a button. When the user clicks the button, a modal ...
0
votes
1answer
57 views
ASP.NET Custom Server Control not disabled inside a Panel that is disabled
I have written a custom ASP.NET Server Control. When I am rendering the control, I check the this.Enabled property to determine if I should add the disabled attribute to my tag (extract of code ...
0
votes
0answers
12 views
can a server control compose of a usercontrol
I was thinking of generic reusable control for a wizard-like control. I know there are wizards control in asp.net vanilla, but the amount of input we collect in one step and the application logic we ...
0
votes
1answer
60 views
Separate Assembly for each ASP.NET Server Control?
I started off creating a new project for each Server Control that I needed to create (for the purposes of flexibility and modularity). My latest project is a control that inherits TextBox in order to ...
5
votes
1answer
110 views
reduce code lines saving in viewstate properties
I have a custom server control that has a lot of properties - each of them save their state in viewstate:
public Color XXX
{
get
{
return (Color)ViewState["XXX"];
...
0
votes
0answers
94 views
When to bind data in asp.net custom server control
We have a number of asp.net custom server controls in our website solution. Most of these are class files that inherit from DropDownList, call a stored procedure, and bind to the results. Now I'm ...
0
votes
1answer
117 views
Child Control is not rendering
I created a custom composite control that contains, among other things, child controls from this project https://googlevisnet.codeplex.com/ (it is a .NET library for google charts which i checked ...
0
votes
0answers
120 views
Group header selection in dropdownlist in asp.net
How to select an Group header in dropdownlist in asp.net
6
votes
2answers
162 views
GetScriptDescriptors() method for two .js files : strange unexpected behavior
My custom server-side ajax control implements IScriptControl :
GetScriptReferences
GetScriptDescriptors
First method sends javascript files,second creates javascript objects based on some sended ...
5
votes
2answers
113 views
access WebControls markable properties in constructor asp net
Here is my custom control.It inherits [Height] property from WebControl class.I want to access it in constructor for calculating other properties.But its value is always 0.Any idea?
public class ...
1
vote
1answer
54 views
javascript in ajax asp net control
Here is function that creates javascript objects
public IEnumerable<ScriptDescriptor>
GetScriptDescriptors()
{
ScriptControlDescriptor descriptor = new ...
1
vote
1answer
39 views
cant see defined event in asp server control with intelsense on aspx
I could see any property defined in server control with intelsense on .aspx and assign value to it.But how can I work with my custom events - I can assign value to them only on .cs file.I mean I want ...
0
votes
0answers
20 views
ServerControl is null only in MasterPage
I have a custom ServerControl in my WebApp. If I put this ServerControl in a MasterPage, in Page_Load event this control is always null.
protected void Page_Load(object sender, EventArgs e)
{
...
2
votes
2answers
44 views
send <style> info from custom server asp element
I want send to output CSS info in style blocks
protected override void RenderContents(HtmlTextWriter output)
{
...
output.Write("<style> .... ");
}
But this block ...
0
votes
1answer
130 views
Rendering server control in a callback
I have a bunch of different panels that are custom server controls, which inherits CompositeControl. The panels are rendered by using the CreateChildControls(). I have a page where I am displaying ...
0
votes
1answer
79 views
How to remove duplicate code across Custom Control Classes
I have 2 custom server control classes. One inherits from TextBox and the other inherits from Label.
Both classes contain quite a lot of common code (various properties and attribute rendering ...
0
votes
1answer
119 views
how to raise a postback after the previous postback in the same page completed
I am having a treeview control in my page. I have enabled the postbacks while selecting any node or expanding any root node.Now my problem is, when I select the root node, it will get both selected ...
0
votes
0answers
224 views
ASP.NET - Resource interpreted as Script but transferred with MIME type text/plain with WebResource.axd
I have a custom server control which requires a script file. So I did this:
I set the script file "Build Action" property to "Embedded Resource"
I added the following to the AssemblyInfo.cs:
...
3
votes
2answers
629 views
What is the difference between “ASP.NET AJAX Server Control” and “ASP.NET Server Control” project types? [closed]
What is the difference between "ASP.NET AJAX Server Control" and "ASP.NET Server Control" project types?
Does one project type have advantages over the other?
Are there some things that can be done ...
0
votes
1answer
59 views
How to contain sections of HTML and other controls within a server control?
I am trying to achieve something like this in a server control.
<MyNewControl runat="server">
<FirstTemplate>
<asp:Label runat="server" ...
1
vote
1answer
422 views
Detecting any AJAX call / Request using JQuery or Javascript
I have a problem where I need to be able to detect AJAX calls on a general ASP.NET page. However this page is automatically generated so I cannot add any code or script managers to it, that aren't ...
0
votes
0answers
25 views
custom serve control add event
I want to create a control similiar in functinality, to button. the dfference, is
that it is made of a few images.
I inherit WebControl
I render html tags, which add the images to create the control, ...
0
votes
1answer
63 views
How do I throw an HttpParseException from my custom server control when a required property is missing?
My server control requires some properties to be set through markup like this:
<cc:MyControl runat="server" Property="Required" />
When a developer forgets to add the property, I throw an ...
0
votes
0answers
65 views
C# Template Server Control Modify the Contents Within the given Template
I am working on a templated server control (C#) having a markup like this
<fs:Script ID="Script1" runat="server">
<ScriptTag>
<script ...
1
vote
2answers
216 views
Is it possible to force a WebControl to render as a <div> instead of a <span>?
How can I force the WebControl to render as a <div>? Currently, it renders as a <span> and our UI guy prefers it be a <div>. To accommodate him, I'd like to see if this is possible ...
0
votes
1answer
291 views
How can I add dynamic html to a server control?
I am creating a server control that will sit in a aspx page. When the user selects a menu option, html controls (selects, inputs, etc) will have be added dynamically. I can do it using a user control, ...
0
votes
3answers
401 views
Get child controls on server control using javascript ASP.NET
I've create a basic composite server control that contains a button.
<Custom:Class1 ID="testClass" ClientInstanceName="test1" runat="server"></Custom:Class1>
I would like to be able to ...
0
votes
2answers
124 views
How can I expose a public property of a server control in the Properties window?
I have an ASP.NET server control with some public properties.
If I drop the server control onto a form, I can access those properties from the code-behind. But I'd like to set them in the Properties ...
0
votes
3answers
159 views
Custom Server Control in ASP.NET and C# -
I've got a aspx and aspx.cs file with some components. Now I want to reuse parts of that page in another page. My approach would be to pull out the duplicate part into a WebServerControl.
So before ...
1
vote
1answer
318 views
How to implement the ClientInstanceName property for an ASP.Net Composite Server Control
How can I implement the ClientInstanceName property, that DevExpress uses for its controls, in my own server control?
The ClientID property is read only. Does that mean I will have to wait until the ...
1
vote
1answer
148 views
Scope of JavaScript functions in server controls
I have decided to learn how to create server controls because of the problems I was having with user controls. I wanted to be able to create JavaScript functions for my user controls so I could call ...
1
vote
1answer
341 views
Server control in server control ASP.NET
I'm trying to learn how to make server controls for asp.net. I use DevExpress which are 3rd party server controls. I'm trying to add a DevExpress button to my server control.
public class Class1 : ...
0
votes
2answers
160 views
Extending .net control: How to prevent HTML atttribute from rendering
I've written a server control that extends the standard .net Gridview control.
However, by default the standard gridview control adds a border="0" attribute to the html markup that it produces, and I ...
2
votes
1answer
392 views
Programically adding child controls to a asp.net composite control
Not found anything that directly answers my problem, so hopefully someone can shed some light on it.
I have two Composite Controls, lets call them BudgetTable and BudgetTableItem, where BudgetTable ...
2
votes
1answer
478 views
C# variable in .js file from embeded resource in server control ASP.NET
I am building my ASP server control which has some resources. One of them is .js file where i must pass a variable from my ServerControl.cs file.
I know how to for example get resource images in my ...
1
vote
1answer
107 views
Custom server controls - how to get intellisense support and rid the xhtml error?
I have created a custom control which takes a custom template. But there is no intellisense support and there is this xhtml error.
I have checked some questions; this post says we have to get it by ...
0
votes
1answer
176 views
Map OnClientClick to onClick - Ajax Server Control
I have a property string OnClientClick and this contains a javascript string supplied by the user of my Ajax server control (this is similar to ImageButton mapping OnClientClick to the actual html ...
4
votes
3answers
418 views
How to make a custom version of AjaxControlToolkit.TabContainer
I guess this is a lot of questions bundled into one post.
I want to build a wizard-like control which looks similar to the TabContainer
But I need certain customizations. These would be like I'd ...





