Questions tagged [web-controls]

Web controls are classes that allow you to create Web server controls on a Web page

Web controls are classes that allow you to create Web server controls on a Web page. Web server controls run on the server and include form controls such as buttons and text boxes. They also include special-purpose controls such as a calendar. Because Web server controls run on the server, you can programmatically control these elements. Although Web server controls are rendered as HTML, their object model does not necessarily reflect HTML syntax.

586 questions
-1
votes
1 answer

asp.net code behind accessing button using button value

I'm creating a form validation. i have these buttons with on my .cshtml. When the user clicks it, a css class (selected) will be added on it.
-1
votes
5 answers

How to create HTML output without a) databinding or b) using Response.Write?

Kind of related to my other question - I've only ever used HTMLControls with runat="server" and WebControls grudgingly, preferring to have control over the markup that gets generated (including the ids of the elements, etc.). What's your suggestion…
nzduck
  • 476
  • 4
  • 12
-1
votes
2 answers

Can One Place a Text Box over a Button in Visual Studio?

I am trying to make a button that, upon clicking it, has its visibility turned off and has an invisible text box's visibility turned on. I would like the button and the text box to occupy the same area, but it would seem that, when trying to…
user3735278
  • 261
  • 3
  • 13
-1
votes
1 answer

Asp.net - does a compiler change the name of functions?

Does asp.net compiler change the name of public methods that are declared in a "web control" ???
MHF
  • 157
  • 1
  • 3
  • 9
-1
votes
1 answer

How to get text value from Control.Controls(i) - VB.Net

Brief description of what I want to do : I am exporting Data from a gridview to Excel, which works fine, but there are certain columns hidden on the gridview, that are not hidden in the extract(Used some code that I found while doing research). So I…
AxleWack
  • 1,801
  • 1
  • 19
  • 51
-1
votes
1 answer

asp.net free webcontrol to display crosstab or pivot reports with column and row grouping, subtotals and totals or different approach

I want to develop some crosstab also know as pivot reports in Asp.net with x-axis and y-axis being dynamics, allowing grouping by row and column, for example: have products in y-axis and date in x-axis having in body number of sells of a given…
dev-cu
  • 331
  • 1
  • 5
  • 13
-1
votes
1 answer

Use of older Telerik RTF/HTML editor

My company has a license for one of the older Telerik packages. They would like me to place an RTF textbox in place of the normal Textbox on one of our screens. I have the extant code for the text box and I have another page used in our application…
Sean Duggan
  • 1,105
  • 2
  • 18
  • 48
-1
votes
1 answer

How can I change to

I specifically need thead tags in my program. When I use System.Web.UI.WebControls; it outputs header rows as tags instead of tags. Is there a way to change this so that it says ? StringWriter sw = new StringWriter(); …
Frantumn
  • 1,725
  • 7
  • 36
  • 61
-1
votes
1 answer

How the asp.net server controls implemented

Just want to have a rough idea how complicated server controls(those built-in controls, such as calendar, treeview) were implemented in ASP.net. I was thinking they are implemented by javascript. But if that's the case, how it works when javascript…
leon
  • 435
  • 1
  • 4
  • 12
-1
votes
1 answer

Multiple Select Dropdown list control

I am looking for a Mulitple select dropdown list in asp.net where on select of one item other control also gets populated. I do not want to use 3rd party tool, suggest a control using Jquery or any thing else.
rajat gogia
  • 3
  • 1
  • 3
-1
votes
1 answer

How do I do a FOREACH loop on specific controls on my web form?

This is basically what I want to do: foreach (checkbox cbx in Controls.Checkboxes) { if (checkbox.checked) { //code } } On my web page, there are 2 check boxes. I want to run a process for each selected item on the…
JJ.
  • 9,580
  • 37
  • 116
  • 189
-1
votes
1 answer

What was this live filtered table implemented with?

I was just browsing http://plugins.netbeans.org/PluginPortal/ I like the way that the table at the bottom of the page works, with its various live filtering & sort options. Particularly its speed, fluidity & function. Does anyone know how this…
FrugalTPH
  • 533
  • 2
  • 6
  • 25
-1
votes
3 answers

How to make active link item bold when using asp.net Menu control

How to make active(selected) link item bold when using asp.net Menu control ?
user1432798
  • 75
  • 1
  • 2
  • 7
-2
votes
1 answer

C# Awesomium Web Control - automatically download and open files

I currently have an Awesomium Webvcontrol in my WinForms application. When I click a download link it prompts with a save file dialog. I need it to download the file to a preset location and automatically open it. I am using the latest version of…
-2
votes
1 answer

How to override the Render method?

I'm looking at a control that must output raw HTML and provide rich design-time support. How to create a custom server control, extend the WebControl class and override the Render method? Can you provide an example? regards, Blanco
1 2 3
39
40