Questions tagged [asp.net-controls]

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.

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; } …
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
Saint
  • 5,397
  • 22
  • 63
  • 107
0
votes
1 answer

Button gets disabled when clicked second time

I have the following button on my page first time clicked button works fine(shows a modal popup). After…
Samra
  • 1,815
  • 4
  • 35
  • 71
0
votes
3 answers

ASP.NET Controls under the hood

I want to learn (basically) about how ASP.NET controls work. I know the end result has to be some kinda rendered HTML. How do the controls encapsulate stuff? How does it tie in to the whole ASP.NET flow? My team has written a widgets library that…
oroku
  • 1
0
votes
1 answer

Free ASP.Net controls for non-profits / charities

I am doing a website for a charity outside of work. I can't use the normal control libraries I would use at work because of the licencing (they won't let me), and predictably the charity can't afford them for a one-off project. I am particularly…
simon831
  • 5,166
  • 7
  • 33
  • 50
0
votes
2 answers

Why doesn't repeater repeat 3 images per row but 1 ?

I have used asp's repeater to repeat 3 images per row but it shows only 1 image per row. why ? I have tried every way I could but no effect.
user8313534
0
votes
2 answers

Page is not postback on button click event with required field validation control

I am using required field validation control on all textboxes and drop down list. When I press button page is not post back but if any textbox or drop down list is empty it will show error message on button click. If I use CausesValidation="false"…
Syed Usama
  • 1
  • 1
  • 6