Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (2)

10
votes
9answers
37k views

Multi-select dropdown list in ASP.NET

Do any good multi-select dropdownlist with checkboxes (webcontrol) exist for asp.net? Thanks a lot
9
votes
1answer
146 views

Why don't all System.Web.UI.WebControl classes with Text properties implement ITextControl?

I'm curious why only some System.Web.UI.WebControl controls implement certain interfaces when they have the same properties of an interface. For instance, there are plenty of controls that have a ...
8
votes
4answers
6k views

ASP.NET CheckBoxList DataBinding Question

Is it possible to DataBind an ASP.NET CheckBoxList such that a string value in the data becomes the label of the check box and a bool value checks/unchecks the box? On my asp.net webform I have a ...
8
votes
5answers
2k views

Fluent interface for rendering HTML

Rendering HTML with the HtmlTextWriter isn't incredibly intuitive in my opinion, but if you're implementing web controls in web forms it's what you have to work with. I thought that it might be ...
7
votes
7answers
232 views

txtFirstName vs FirstNameTxt

Over the past several years I have been using the naming convention of FirstNameTxt when I'm referring to a TextBox Control for a 'First Name' field. However, I've noticed the majority of other ...
7
votes
3answers
1k views

Is there an MVC way of doing ASCX?

Are ASCXs still used in ASP.NET MVC or should we be using something else?
7
votes
6answers
2k views

Can you recommend alternative FileUpload control for asp.net-mvc?

Currently using System.Web.UI.WebControls.FileUpload wrapped in our own control. We have licenses for Telerik. I wanted to know if anyone had experience with that or could suggest a better one? ...
6
votes
3answers
892 views

What's the difference between Render and RenderControl in WebControl creation?

I've recently learned to write my own WebControls, but I'm still hazy on the difference between Render and RenderControl. I started out using Render, but at some point I started using RenderControl, ...
6
votes
7answers
3k views

When creating a web control should you override OnLoad or implement Page_Load

When you create a new web user control in visual studio it by default adds the Page_Load event. What is the advantage to using this rather than overriding the base OnLoad event on the control? Is it ...
5
votes
8answers
4k views

Webforms and jQuery, how to match the ID's?

I want to use jQuery with asp.net webfoms. Do I need to get a special toolkit so the .net controls spit out friendly Control ID's? Reason being, I don't want to write javascript referencing my html ...
4
votes
3answers
430 views

ASP.NET Datepicker without calendar visualization

I'm working in C# / ASP.NET 3.5 and want to enable users to enter their date-of-birth. I've tried the asp:Calendar web control for this, and also considered using the jQuery-UI datepicker, and ...
4
votes
3answers
504 views

Trouble with FindControl and dynamicly created controls

Example code: var div = new HtmlGenericControl("div"); div.Controls.Add(new Literal() { ID = "litSomeLit" }); var lit = (Literal)div.FindControl("litSomeLit"); Assert.IsNotNull(lit); ...
4
votes
5answers
3k views

C# asp.net: How to remove span tag from WebControl when rendered

When using an asp.net CheckBox (and in out case, inherited from a CheckBox) it renders a span around the checkbox input control, this span control is affecting jQuery scripts. Is it possible to ...
4
votes
8answers
6k views

The name 'GridView1' does not exist in the current context

I have two files named as TimeSheet.aspx.cs and TimSheet.aspx ,code of the file are given below for your reference. when i build the application im getting error "The name 'GridView1' does not exist ...
4
votes
3answers
292 views

Graphics in ASP.Net (c#)

I need help with my latest asp.net project. It involves graphics. I need to draw a circle and have several lines going from the middle to the edge (radius). This is the part I know how to do. The next ...
4
votes
5answers
878 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
1answer
235 views

ASP.NET Web Control shows old data after the first postback

I'm having a weird problem with a custom Web Control in an ASP.NET forms application. For a web application, I figured that it would save me a lot of time to create a class which inherits from ...
3
votes
3answers
106 views

Is good or bad to write everything in c# rather than using web controls?

I'm confused with choosing between several ways of getting result in ASP.NET. For example, Web form control SqlDataSource, you retrieve data from database and show results in other controls such as ...
3
votes
1answer
230 views

ASP.net control Postback Problem (Can't read the value the user entered!)

I've written a custom widget to allow a user to select a location from a database of locations. This is my first ASP.net custom control. It seemed like everything was working fine, but now there's a ...
3
votes
1answer
63 views

Does each webcontrol have only one unique event not inherited from System.Web.UI.WebControls?

The reason I want to know this is because it seems that __doPostBack('controlId','eventarg') raises the unique event of the control specified, but I wonder what would happen if the control had ...
3
votes
4answers
236 views

Most performant ASP.NET web controls suite

Personally I've been working for years with Telerik's RadControls and DevExpress ASP.NET controls. IMHO they both produce quite an impressive HTML overhead on the client side thus for that I've never ...
3
votes
2answers
689 views

How to insert the ClientID of a div into an OnClientClick event

In the XHTML for a page I have:- <asp:Button ID="bookNowButton" runat="server" CssClass="bookNowButton" OnClientClick="showHideLoggedInDiv('<%=bookingFormDiv.ClientID%>')" /> ...
3
votes
2answers
512 views

How can I include additional markup within a 'Content' inner property of an ASP.Net WebControl?

I've searched the site and I cannot find a solution for my problem, so apologies if it's already been answered (I'm sure someone must have asked this before). I have written a jQuery Popup window ...
3
votes
2answers
453 views

How to get the set/real value of the Visible property in Asp.Net

The Get of the Visible property of a control recursively looks up the tree to indicate if the control will be rendered or not. I need a way to see what the "local" visible value of a control is ...
3
votes
2answers
853 views

Best way to globally set every control's ValidationGroup property in an asp.net?

I have a User Control with form items that is re-used considerably throughout a large web application, and up until this point the validation summary upon an invalid form submission is being handled ...
3
votes
1answer
2k views

By default, does ASP.NET Login Control use the ReturnURL to redirect?

If I drop a System.Web.UI.WebControls.Login onto a page, should it redirect to the ReturnURL by default? Or do I have to set some config settings or write some code to make this work?
3
votes
7answers
7k views

ASP.NET TextBox Control - Get the default text value in code behind?

I have been spying the MSDN and can't see a property/method for TextBox that allows you to get the default text value that was set on a field; I want to be able to compare the current ...
3
votes
1answer
4k views

How to prevent Just-In-Time Debugger showing when script error occurs in WebBrowser control

I use a WebBrowser control in my Winforms application. When I navigate to a Url that causes a JavaScript exception the Just-In-Time (JIT) debugger window shows up asking if you want to debug this ...
3
votes
2answers
1k views

Free asp.net color picker control

Can anyone recommend a free color picker web control for asp.net webforms ? Thanks
3
votes
6answers
2k views

Is it possible to add a web user control to a class library?

I'm looking at building some web user controls with an eye toward re-use, but I can't seem to add a Web User Control in my class library in VS2008. Is there a way to work around this problem, or is ...
3
votes
1answer
154 views

ASP.NET WebControl for displaying revisions or differences of content

I would like to display the differences between versions of the same content. Initially I rolled out my own WebControl, however the differencing algorithm I came up with was slightly naive. Does ...
2
votes
1answer
27 views

Is there a tool that will automatically generate web controls from user controls? (incl HTML markup)

Is there a way to create web controls from user controls which will for instance turn the following markup: <div id="pnlTest"> <asp:Label ID="lblTest" runat="server" /> </div> ...
2
votes
2answers
71 views

When is it acceptable to override a feature associated with ViewState and make it use ControlState?

ControlState vs ViewState I am working with a RadListBox. RadListBox has the following property which is set to True by default: PersistClientChanges The functionality of this property is dependent ...
2
votes
1answer
94 views

Convert string to WebControls - asp.net

If you see the following code Table tblTest = (Table)tblControl; StringBuilder text = new StringBuilder(); StringWriter writer = new StringWriter(text); HtmlTextWriter htmlWriter = new ...
2
votes
1answer
254 views

ASP.NET ListView-embedded Web-Control loses state and passed-values on ItemDataBound event handler when page posts back

This question is about a very strange behavior of web controls. Consider the following please. Scenario I have a web control which is used to show some data. MyWebControl.ascx file is the following: ...
2
votes
1answer
547 views

Adding styles and scripts to ASP.NET web controls (ascx) without repeating inclusion directives

Consider to develop a web control (ASP.NET). What you would really like to do is styling and developing this control in a very good way, here's a very good way to do this (this is how I would like to ...
2
votes
1answer
79 views

Is it possible to hide from some users some menu's elements while using ASP.NET menu control?

Let's say I have a menu that contains everything. But, I want some elements not to be visible to every user. Thanks for helping
2
votes
0answers
154 views

Spreadsheet like control in ASP.NET

Do you know any ASP.Net controls like Spread for ASP.NET that can render Excel like pages that has built-in formula evaluation?
2
votes
3answers
618 views

Using linq to get list of web controls of certain type in a web page

Is there a way to use linq to get a list of textboxes in a web page regardless of their position in the tree hierarchy or containers. So instead of looping through the ControlCollection of each ...
2
votes
2answers
169 views

How can I replicate If…Then logic as a Web control?

I have a designer working at the ASPX level. He doesn't do C#, doesn't do code-behinds, doesn't compile, etc. He's a pure designer, working with HTML and server controls. I need a conditional ...
2
votes
2answers
156 views

C# WebBrowser control with uninstalled IE (?)

I want to use WebBrowser control to load some localfile html page. I am aware that WebBrowser is just a wrapper around the InternetExplorer. As I remember Microsoft allowed users in Vista (?) to ...
2
votes
3answers
91 views

WebControls and IDisposable

Since WebControls inherit from Control which implement IDisposable. Is it necessary to call Dispose or wrap these WebControls in using statements to prevent memory leaks or does ASP.NET automatically ...
2
votes
3answers
162 views

Recreating “Font” Property Behavior

Controls that inherit off of System.Web.UI.WebControls.WebControl have a property called Font. The type is System.Web.Ui.WebControls.FontInfo. When working with these controls in the designer, it ...
2
votes
6answers
316 views

Wherewith replace Dictionary.Where(p => p.Key is T)

I have a System.Collections.Generic.Dictionary<System.Web.UI.Control, object> where all keys can be either type of System.Web.UI.WebControls.HyperLink or type of System.Web.UI.WebControls.Label. ...
2
votes
3answers
227 views

why can't asp.net find my textbox?

I'm trying to add more fields to the CreateUserWizardStep, here is what I added: <asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server"> <ContentTemplate> ...
2
votes
2answers
769 views

Can't access instance of custom inherited webcontrol from code-behind page in Web Application project

I've inherited from an ASP.NET WebControl to add some additional functionality. I tested my control in a blank ASP.NET Web Site (created through File > New Web Site...) and it worked fine. But I ...
2
votes
2answers
728 views

MFC : How to capture a link click event in a web browser control?

I have an MFC application that has a webcontrol. When clickable links are clicked, it opens using IE, not the default browser. Questions : Is there a way to force it to open using the default ...
2
votes
3answers
2k views

asp.net xml editor control

All, I am looking for an asp.net xml editor control. Not a WYSIWYG editor like freetextbox or a javascript syntax highlighter but something that would make editing xml in the browser a bit easier than ...
2
votes
3answers
242 views

Set <asp:content> content in C#

I'm currently learning to use MasterPages and ContentPlaceHolders in ASP.NET 3.5 and C# - and right now, I'm desperately trying to edit the contents of an asp:Content-Control through my programming ...
2
votes
2answers
105 views

Building your own web controls

Well it's kind of a newbie question but I think lots of people have problems with this. I'm developing Windows/web application for fun, and installing them at friends' places. Most of my developing ...

1 2 3 4 5 7