ASP.NET Web server controls are objects on ASP.NET Web pages that run when the page is requested and that render markup to a browser. Many Web server controls resemble familiar HTML elements, such as buttons and text boxes. Other controls encompass complex behavior, such as a calendar controls, and controls that manage data connections.
Questions tagged [asp.net-controls]
174 questions
0
votes
1 answer
Filtering query
can anyone help me. I'm trying to get results from my query but can't get them to work. i'm making query in connection table whitch connects other 3 tables.. and for a result i need to get …
0
votes
2 answers
Adding 'onClientClick' javascript to an ASP.NET Login control
I've got to put a login page from a 3rd party website in an iframe on another website that I'm developing. I need to add some JavaScript to break out of the iframe when the user logs in, but I can't make the login button to execute the JavaScript…

Nick
- 5,616
- 10
- 52
- 72
0
votes
1 answer
Set value in user Control textbox with select index changed Asp.net web forms
I am trying to set value from the database when the button select is click in the gridview.
Here is the code behind of my control, I have get and set each textbox:
public string candiType
{
get { return radType.SelectedValue; }
…

DeathStriker2
- 29
- 8
0
votes
1 answer
display the content of the asci file in the web page
In my application,I want to display some static files(.html,.htm,.txt) which will be uploaded by the user(the admin),then I put them in a specified directory.
Also,the admin can add new folder or files to the directory,so I think using the…

hguser
- 35,079
- 54
- 159
- 293
0
votes
1 answer
0
votes
2 answers
.Net: Does controller have to have file name corresponding to URL?
I'm following this tutorial on .Net controllers, and it says "imagine that you enter the following URL into the address bar of your browser: http://localhost/Product/Index/3. In this case, a controller named ProductController is invoked."
What I…

RNdev
- 953
- 1
- 8
- 26
0
votes
1 answer
ASP.NET 4.0 - Dynamic Table Generation and Dynamic Application of Css Styles
I have the following Helper class to generate a control dynamically.
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Test
{
public class…

RAM
- 856
- 1
- 8
- 27
0
votes
1 answer
asp.net controls in asp.net MVC
I have installed Visual Studio 2010 express edition which has MVC in it. I am creating my first application and I noticed that I can include basic asp.net controls like [label, gridview, datagrid, drop downbox] in it. and all event related to these…

Chris
- 2,293
- 11
- 48
- 86
0
votes
1 answer
VB.NET Real IDs in place of Placeholder IDs
I have a particular link that I'm trying to convert to an ASP:LinkButton place holder so that I can control it's visibility based on the user type:

Dexter
- 795
- 2
- 13
- 27
0
votes
1 answer
Access control in a number of tags from codebehind
I've such a structure
…