0
votes
2answers
21 views
Server control/data access best practice?
Is it better to access data from within the web parent app and pass the necessary data to the control and back via properties, or pass a reference or url pointer (of webservice) to …
0
votes
1answer
246 views
ASP.NET server control wrapping GridView in a Panel linked to an AJAX Toolkit ResizableControlExtender - panel size does not initialise to the size of the grid
I am trying to create a resizable GridView wrapped up as a server control. I am using the ResizableControlExtender from the AJAX Control Kit, which as far as I know requires that …
0
votes
1answer
24 views
How can i create a ModalPopupExtender control dynamically from a server control?
I have a composite server control that does quiet a number of things; one of which is to display a ModalPopup OnClick of a dynamically generated HtmlAnchor control.
I need to crea …
0
votes
0answers
35 views
Page.ClientScript.RegisterClientScriptBlock and nested server controls
I'm using Page.ClientScript.RegisterClientScriptBlock on PreRender in a nested Server Control environment. The script does not get written to the page, does anyone know why this ha …
1
vote
1answer
34 views
Web controls lifecycle problems: A page, a grid and a dialog (containing a dynamic control whose type depends on the selected row in the grid)
I have a web page with a GridView. The GridView contains a list of Question objects. Each Question has a QuestionType. When the user clicks on the Question control, an Ajax moda …
0
votes
1answer
112 views
ASP.NET server control: how to convert design-time string into object type (TypeConverter?)
So hopefully this is a silly question (that would make it easily answered).
I'm trying to make a composite server control that encapsulates a TextBox, some validators and other st …
0
votes
1answer
33 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 callba …
1
vote
2answers
144 views
ASP.NET, Trigger codebehind eventhandler with anchor tag
Is it possible to call an eventhandler codebehind, using an anchor tag? I've tried different things, but it doesn't seem to work.
I've tried writing my tag like this:
<a clas …
2
votes
2answers
167 views
ASP.net Page object null when invoking it from within templated control
Hi,
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>
…
0
votes
0answers
89 views
Passing page’s server controls as parameter in custom user control
Hi , I want to pass the page's server controls(especially gridviews,datalists,repeaters) as parameter to my custom server control.
My purpose is to make a html to pdf export button …
4
votes
2answers
133 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 …
0
votes
2answers
142 views
How to use Server Controls with PostBack with ASP.NET MVC?
Once I click the button, it throws a "Validation of viewstate MAC failed" exception. I know MVC does not support PostBack but is there any way to work around this?
Or we need to u …
0
votes
4answers
124 views
How to access asp:Image from Javascript?
Hi all..
I got an asp:Image in my server-markup like this:
<asp:Image ID="Img1" runat="server"/>
Now, I want to find this img in my javascript, but seem to run into the p …
0
votes
3answers
138 views
Server controls in an asp.net repeater
Hi all..
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 …
1
vote
3answers
220 views
asp.net custom server control - how to tell if postback ocurred because of this control
I have a custom asp.net server control (actually a specialized version of a checkbox). I want to do some processing on a postback but only if the postback was a result of this con …
