Tagged Questions
7
votes
5answers
785 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
318 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
747 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
32 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
113 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
53 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
869 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
237 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
11 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
88 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
136 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
131 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
449 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
620 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
243 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
346 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
479 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
184 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
915 views
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
1answer
34 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
1answer
25 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
20 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
87 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
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
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
74 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
80 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
89 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
44 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
59 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
1answer
97 views
ASP.NET Pivot Table: How to use it with just two tables in the database
I have an Excel sheet that list all the employees in the company with some required training courses. The list is very big and long and I need to incorporate it within the company website. therefore, ...
0
votes
1answer
76 views
ASP.NET ListView Control: how to style it and retrieve data from database in specific columns
I am trying to use the ListView control to show a list of data from the database as following:
Employee Name: xxxxxxxxx ID: 111111
Job Title: yyyyyxxxx ...
0
votes
2answers
42 views
What is the correct ASP.NET Control event/method in which to add nested controls?
What is the correct event/method in the ASP.NET life cycle to dynamically add Child Controls ?
My objective is to ensure that all the input controls on a User Control have the correct associated ...
0
votes
1answer
96 views
display the content of the asci file in the web page
Hi:
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 ...
0
votes
1answer
499 views
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;
...
0
votes
1answer
79 views
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:
<asp:LinkButton id="linkColumnsSelect" ...
0
votes
1answer
258 views
LoadControl(string) in different assembly?
I'm developing a stand-alone ASP .NET component for dropping in to various sites we create.
Part of the application is a CompositeControl, which needs to load a UserControl.
However, CompositeControl ...