The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
79 views

How could I download and view images in imageview in Android?

I'm trying to display two images from my server. How could I achieve this? Any options available in Android to change the image dynamically from the server for every instance? I'm using permission ...
0
votes
0answers
65 views

Container.DataItem does not return anything

all I am Currently developing a custom web gridview inherits from CompositeDataBoundControl. The steps are below: Create a gridview class inherits from CompositeDataBoundControl. Create a ...
-1
votes
1answer
130 views

Any alternate way to avoid null value return in asp.net server control [closed]

I created a server control and test.aspx Code is shown below . When dll is loaded , RenderContents() function gets called. Control transfer to DataSource property , but ...
0
votes
0answers
75 views

Convert .NET LiteralControl to web server side control

It is possible to dynamically create a .NET LiteralControl, and instantiate it with the generated HTML of an already existing, statically-created web UI control (for instance, an asp:Table), But what ...
1
vote
0answers
15 views

why does the multiple “find” doesn't work in SC query.

I wrote an sc query PlugPlay | FIND "SERVICE_NAME" | FIND "STATE" to list only the service name and its status but it's not giving any output. Please correct me how to list the service name and its ...
0
votes
0answers
183 views

Button click event inside extended grid is not firing correctly

I am trying to create extended gridview server control along with extra buttons above or below the grid. I tried overriding RenderContents methods to add new button along with the event handler, but ...
0
votes
0answers
105 views

Server control load in ajax with ascx and ajaxpro

How do I use the direct control in aspx control works without problems, but as initialize this control via ajax as below the javascript and css are not loaded. Not Playing in OnLoad, OnPreRender. ...
0
votes
0answers
14 views

Server control get inner Reources

How can i get de resource inner tag control <pbs:Controle runat="server><%=Resources.Label.Column%></pbs:Controle> Today I'm taking the text as follows protected override void ...
0
votes
0answers
102 views

Problems in the generation of ID with custom server control grid

The example below is working ok, but all are the same ID. How do I generate different id for each row of the grid? Example of lists created in the grid. [ToolboxData("<pbs:Grid ...
0
votes
1answer
66 views

what's the ASP.NET method to load a server control by parsing from a string

I believe I have seen a method for doing this, but I do not remember. I am trying to load a control using something like: string str = "<asp:label id=\"myLabel\" runat=\"server\" />"; Control ...
0
votes
2answers
5k views

ScriptManager.RegisterClientScriptBlock registering scripts twice

On the OnPreRender of my custom server control, I am registering an alert to popup everytime the page is loaded after a partial postback (add_pageLoaded(function() { alert('Hi')})). I only want this ...
0
votes
0answers
97 views

How to add a DataTable component in creating a “Server Control”? [closed]

Good afternoon! I am creating a dll to be a component grid. I do not want to extend the class grid default because I'm doing something very simple, but something that can not make the grid default. ...
1
vote
2answers
371 views

Add generated rows and columns to table in aspx file

I want to add my table to the page, and the Table control is put in the aspx file and the columns and rows is generated in the aspx.cs file: if (Page.IsValid) { var start = ...
1
vote
1answer
273 views

Access Server side methods/controls from static method

I have the below static method... i want to change the server side label's value from this method.. Public Static void CallFromJquery() { Default1 page = (Default1)HttpContext.Current.CurrentHandler; ...
0
votes
1answer
99 views

user control inside server control

I working on an asp.net app. I'm have a user control inside a server control, say: <sc:MyServerControl ID=...> <uc:MyUserControl> </uc:MyUserControl> ...
0
votes
1answer
81 views

How to invoke a wcf service in a custom server control class?

I am developing an Custom Server Control (Ex: a TextBox) which would help a deveoper to bind a control directly to the service layer. My Requirement. The text box will have the Attributes like ...
0
votes
1answer
148 views

How to allow HTML/Javascript intellisense in self-developed .Net Server Control inner text?

We've developed our custom .Net Server Control for our ASP.Net project use. It allows users to put HTML/Javascript code into its inner text node. The problem is, when the user is inputting the ...
1
vote
5answers
518 views

ASP.NET: How do I create a widget/user control that can be used with other solutions?

I am looking to create a widget that can be used with other solutions. The widget is a competition widget that can be placed in different parts of the site. What is the best way to do this? Should I ...
1
vote
2answers
242 views

Javascript won't work on Html server control?

I am writing a website with ASP.Net. I will have lots of html generic controls like <div> <span> and so on.. I have some onclick javascript functions, onmouseover javascript functions.. ...
0
votes
1answer
363 views

How to Serialize httpcontext Object and passing through webservice from an asp.net server control?

I want to pass httpcontext object through webservice by serializing it from an asp.net server control . but it is not working with server control. It is working with webapplication. Please help me in ...
0
votes
1answer
737 views

Server Control Create Children Elements

I want to know how do you create child elements for a server control and is there any documentation or tutorials on this e.g <myMenu:Menu id="Menu1" runat="server"> <myMenu:MenuItem ...
1
vote
2answers
68 views

How do I make an attribute on a custom user/server control be mandatory?

If certain attributes on built-in ASP.NET controls aren't specified, then an exception will be thrown. How do I do this on my custom user/server control?
0
votes
1answer
46 views

How to retrieve the url address of a page hosting composite control?

I have a composite control, I need to get the address of page hosting it.
2
votes
1answer
5k 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 ...
5
votes
2answers
254 views

Allowing any property/attribute on a server/usercontrol

I've noticed that on most, if not all, standard web controls in the System.Web.UI.WebControls namespace, you can add any properties you want to them without crashing the page. Take the asp:Button ...
0
votes
1answer
182 views

Server control losing mousedown event handler on callback

I have a composite server control that contains a div to which I attach a right click event handler in the Render method (simplified for clarity): protected override void Render(HtmlTextWriter ...
1
vote
1answer
598 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 stuff, depending on ...
0
votes
2answers
421 views

Create server control like panel and linklabel using javascript

I want to add panel control using javascript inside the TD element. Is it possible to create these control using Document.createElement and appendChild methods? I also want to show and hide this ...
3
votes
1answer
1k views

How do I convert an ASP.NET page using Ajax webmethods to an Ajax-enabled servercontrol?

In this tutorial I am reading, Dave Ward creates a page that shows the server date in a label without using the update panel. I am trying to learn how to create servercontrols that use ajax for ...