Tagged Questions
The asp.net-controls tag has no wiki summary.
7
votes
5answers
793 views
How can I create a custom Repeater that displays Header, Footer based on properties?
I want to create a Repeater that displays the header/footer based on properties, only if the DataSource is empty.
public class Repeater : System.Web.UI.WebControls.Repeater
{
public bool ...
6
votes
3answers
1k views
Is there a way to put inner controls inside a ASP.NET Custom Control?
I want to do something like (Updated example):
<uc:Tabs>
<Tab Name="A handy tab">
<Node Url="~/Default.aspx" />
<Node Url="~/Node2.aspx" />
</Tab>
...
5
votes
2answers
320 views
ASP.NET: explicit vs implicit localization?
To my mind the advantage of implicit localization over explicit localization is that if you have more than one property to localize for a given control, it's a more economical syntax.
In the case ...
5
votes
10answers
749 views
How to reduce this IF-Else ladder in c#
This is the IF -Else ladder which I have created to focus first visible control on my form.According to the requirement any control can be hidden on the form.So i had to find first visible control and ...
2
votes
1answer
36 views
Advantages of not specifying control IDs?
Reading over TRULY UNDERSTANDING VIEWSTATE the author suggests:
When ASP.NET parses the form, and finds a tag with runat=server, it
creates an instance of the specified control. The variable ...
2
votes
1answer
117 views
How to manage javascript Dependency for Ajax Extender controls
Does the Ajax Extender control base provide dependency management? I am creating a set of controls that uses a few base scripts used by the behaviors and from here Creating a Extender Control it sort ...
2
votes
1answer
37 views
Is it possible to append an Updatepanel control to a page using Javascript/Jquery?
I'm trying to develop a system where users can drag icons (which represent user controls) onto a web page.
However, the user controls need to be housed in an updatepanel (or similarly AJAX enabled ...
2
votes
1answer
54 views
how to write tag Name and ID for ASP.NET Server Controls
I am developing an asp.net server control
and in the
protected override void RenderContents(HtmlTextWriter output)
method
I just write something equivalent to this:
output.Write("<input ...
2
votes
1answer
877 views
Object reference not set to an instance of an object
I am trying to assign values to the hiddenfields duting page_load..but its throwing System.NullReferenceException.. This is the code iam using in the page_load event..
Protected Sub Page_Load(ByVal ...
2
votes
1answer
238 views
Adding a GridViewRowCollection to the asp.net GridView
i have a record of a gridviewrowcollection. and i'm having issues with adding them to the grid.
GridViewRowCollection dr = new GridViewRowCollection(list);
StatisticsGrid.DataSource = dr;
doesnt ...
2
votes
1answer
40 views
ASP.NET custom templates, still ASP.NET controls possible?
Hello: we currently do not use asp.net controls (no web forms). The way we do is:
1> Read HTML file from disk
2> lookup database, parse tags and populate data
finally,
...
1
vote
1answer
12 views
Which control supports templates?
I've got a user control which can be rendered in several different ways depending on the value of one of the properties. For example:
The markup could be:
<h1><asp:Literal id="Title" ...
1
vote
2answers
90 views
.NET Button Control, OnClick Event: (Try, Catch statement?)
I have a button on a web page that I just need a little help with some extra code. I think I need a TRY, CATCH statement?, this is what I have so far:
I have a simple web page that has a button ...
1
vote
3answers
53 views
ASP.NET Design Issue: what is the best asp.net control for creating a table with 15 properties?
I am a new ASP.NET developer and now I need to develop a data entry system with 15 fields that allow the admin of the system to enter some data under each one of these 15 properties. From what I ...
1
vote
0answers
138 views
How can I get my CreateUserWizard to send emails
How can I get my create user wizard to send email
this is my code. It's mostly the code generated from the create new asp.net website template
<asp:CreateUserWizard ID="RegisterUser" ...
1
vote
1answer
42 views
recreate the textbox asp.net server control
I am trying to recreate the TextBox control,
the problem is that after the postback the value in the textbox returns to it's initial state.
Anybody knows how to make it persist the value after ...
1
vote
2answers
132 views
CommandName=“Delete” doesn't call any method
I've got a Repeater-controller that looks something like this:
<asp:Repeater ID="Postrepeater" runat="server" DataSourceID="datasource" >
<h2>
<%#Eval("posttitle") %>
...
1
vote
0answers
269 views
asynccontrols asp.net Error Creating Control “ Object reference not set to an instance of an object”
here is my sample form.
I'm using asynccontrols
. Site compiles fine, loads fine, works fine. Can't view anything in designer. Halp?
<%@ Page Language="C#" AutoEventWireup="true" ...
1
vote
3answers
461 views
ASP.NET control to render a <div>
The Label control in ASP.NET seems to render <span> tags, but is there a server control to render HTML within a <div>?
Sure, I could set display: block and it might look the same, but I'd ...
1
vote
2answers
623 views
Set image control image dynamically from server side asp.NET
I have a webforms site where users upload files, the file name etc is saved to DB. These files are then displayed in a datalist. I'm trying to get this datalist to show different images (icons) to ...
1
vote
3answers
245 views
How to create web controls in php
in asp.net there are controls like grideview, menus, .....
how to develop a web control in php like an editor [html, jscript, ajax calls to server] it is used repeatedly and the improvement of ...
1
vote
4answers
145 views
Simple WYSIWYG editor for ASP.NET that supports images
I need just a basic functions:
bold text
header text
list (numbered)
undo and redo
insert image
change background of editor
I don't need to let the user directly change html code.
There I have ...
1
vote
5answers
349 views
ASP.NET Server Control Property Attribute must be required
I have a custom ASP.NET server control CustomControl with a property attribute Path.
If the Path is not explicitly specified, then I want an exception to be thrown.
For example,
...
1
vote
3answers
57 views
Is it safe to rely on an ASPX file being valid XML?
If an aspx file compiles, is it safe to assume that it is valid XML?
Does ASP.NET work by parsing the server controls as XML?
1
vote
2answers
487 views
Using SELECT DISTINCT on an already created DataTable object?
I have an already created DataTable object which i am using for my girdview (asp.net) i also need to bind a column of that object to a DropDownList. The datatable has the correct details in the column ...
1
vote
2answers
99 views
Can you nest asp.net controls?
I want to create control which would contain other controls.
For these other controls I want to create "base" control with some default look and background logic and then derive all other controls ...
1
vote
3answers
185 views
how to assign a control property value from a global variable in page code?
Greetings,
I have a control and list of variables and I want in the control property to be assigned to the variable value directly in the page not from the back code, something like this
My global ...
1
vote
1answer
91 views
ASP.NET how to create container control which will have exactly two containers?
How to create a web control which will contain exactly two containers in ASP.NET 3.5. Like always exactly two columns (divs). I know default way allows you to have ControlCollection by overriding ...
1
vote
3answers
920 views
1
vote
1answer
1k views
Is there a way to programmatically set the current node of a SiteMapPath control?
My site has a few pages that point to the same child page. I'm using a xml site map that will not allow me to duplicate a SiteMapNode with the same Url. My idea was then to give my SiteMapPath ...
1
vote
5answers
11k views
How do I disable all controls in ASP.NET page?
I have multiple dropdownlist in a page and would like to disable all if user selects a checkbox which reads disable all. So far I have this code and it is not working. Any suggestions?
foreach ...
0
votes
0answers
23 views
DNN How to create a complex module with multiple controls
My goal are to create a module that holds a listview with entries of xml files. The xml files are just serialized arrays of some object. Country{Code,Name,URL} as an example.
When an entry is clicked ...
0
votes
1answer
35 views
How to set TotalRowCount property for data pager control in paging of ListView?
I work in listView with datapager control and create paging for list view as follows:
<asp:ListView ID="lvList" runat="server">
<LayoutTemplate>
<ul>
<li ...
0
votes
0answers
29 views
In asp.net calling a class from the css in the control page that affects the pages where control called
I am using controls for side menu in my website, which is working fine.
But in every page a class should be highlighted through css. Do I have any way for calling the class form control page?
Hope ...
0
votes
2answers
14 views
Dynamic Controls not Displaying
I am creating controls on some input XML.
The controls are then added to the different PlaceHolder Control which is places in a table. Here is the code for reference
private void ...
0
votes
1answer
26 views
listview in html-select
I wrote this code:
<select id="selectCategories" runat="server">
<option value="-1">Categories</option>
<asp:ListView ID="lvCategories" runat="server">
...
0
votes
2answers
21 views
ASP.Net FAQ library control
Can someone advise if there is an ASP.NET control that i can use to create an FAQ section on my existing website.
I can build it myself but i was hoping there's an existing library i can just plug ...
0
votes
3answers
88 views
How to update the GridView after checking the checkbox and clicking the save button?
I need to set these GridViews for updating by the admin. So since I have
a lot of employees and a lot of courses in each GridView, I think the best
way to update the GridView is to show the blank ...
0
votes
1answer
24 views
How to display different data from the same table in Repeater that exists in many pages of the website?
I have a Repeater that shows safety messages from the Safety Messages Table in the database. Since I will put this Repeater in many pages of the Website, I want to this Repeater to show different ...
0
votes
0answers
39 views
Intermittent ASP.NET Errors in Safari Browser on OSX
I have an application that is using ASP.NET 4.0 Webforms on IIS 6.0 that has been operational for multiple years. A recent deployment to the app has caused some very random (to us) intermittent issues ...
0
votes
1answer
19 views
How to write the columns header of the GridView in two or three lines instead of long one line?
I have a GridView with a lot of information and columns. The Header of each column is so long, so I want to write it in two or three lines instead of one line. How to do that?
0
votes
0answers
30 views
How to modify this stylish wizard to be displayed as it is in the IE 7 and above?
I searched for a stylish wizard and I could only be able to find this ONE
but unfortunately the arrows at the top of the wizard cannot be shown or displayed in the IE7+.
Therefore, is there anyway to ...
0
votes
1answer
75 views
ASP.NET: How to user the UploadFile Control inside ListView Control for uploading document in the web application?
I am developing a web application using ASP.NET. Now, I am working on the administrative tasks and I want to give the admin the ability to upload newsletter which will be displayed on one of the web ...
0
votes
3answers
81 views
Visual Studio User Control ASP, C#, Code Behind issue
Okay this is probably a shot in the dark as it would be very difficult to guess what is going on here. But I am running out of options here.
So I have this code behind for a page that a user is able ...
0
votes
4answers
91 views
How to edit the GridView programmatically?
I have a big table that I need to develop it as a part of an ASP.NET web application. The data will be retrieved from the database. instead of viewing the data directly. I want through the C# to ...
0
votes
2answers
32 views
How to display ASP.NET Charts (Framework 4.0) on Visual Studio 2010?
I am developing a web application and now I am trying to develop a dashboard using ASP.NET charts. I am trying now to develop a chart that shows the number of users who uses the system. I have a table ...
0
votes
1answer
45 views
How to change the width of ASP.NET ListView?
I am developing a web application and using the ASP.NET ListView control. I am having now a large ListView and I want to minimize the width of it since there are large spaces between the columns. ...
0
votes
2answers
47 views
Inserting data to GridView using CheckBox
I have a GridView and I put checkboxes inside all its cells. I want to do the following:
if the checkbox checked by the user, this means Yes which will be stored in the database
else, if the checkbox ...
0
votes
1answer
62 views
asp.net onClick event for Button
I have a button on a web page that when clicked connects to my SQL server and runs a stored procedure. The buttons works fine (It simply pushes data into a database table).
I’m new to .NET ...
0
votes
2answers
35 views
Run a Stored Procedure via a click of a button in .Net web page
Afternoon All,
I have a stored procedure in an SQL 2005 database named GasNominationsRawData_Insert.
When executed this simply extracts some data from another database and inserts the result into a ...