The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
5 views

Asp.net controls in Div tag are not visible when Div tag is visible?

I'm trying to show/hide a Div tag (which contains other asp.net controls) on a RadioButtonList OnSelectedIndexChanged event. Issue: When i show Div tag, the controls in the Div tag are not visible. ...
0
votes
1answer
32 views

Single Value Binding

The intent is to append the javascript code within the OnClientClick event to pass in the value of SearchIDTextbox as the ID parameter. If I hard code "22" for ???? the function runs properly. I thinK ...
0
votes
1answer
42 views

Is there another way to filter a grid view?

At the moment i am using this code below to filter my gridview according to what i have selected in the dropdownlist which is calling a SQL statement which populates it. protected void ...
-1
votes
1answer
27 views

Change the appearance of gridview

I have a News table in DB that contain (id,title,body) fields. Now I want to display these news into news.aspx page. I can use grid view to show them, but i want to change the grid view's ...
0
votes
4answers
49 views

how to change visible of an asp.net control of master page in content page?

I have a master page that have a panel:asp control and i do visible=false in it's code behind . Now i want to change visible=true in one of content page.How do it? And these are my code. Master page ...
0
votes
0answers
241 views

IE 10 width & height issue when used for <html> tags and asp.net controls [closed]

E.g. : <td style="width:80%; height:100px;" valign="top"> or <asp:TextBox ID="txtDays" runat="server" Width="25px" Height="17px"/> Its ruining my whole settings, which works fine in ...
0
votes
1answer
38 views

MVC'ify WebForms Control

Currently, I am passing data from my codebehind into hidden fields like so: Code behind: HiddenField statusValue.Value = progressPercent.ToString(); .ASCX page: <asp:HiddenField ID="statusValue" ...
1
vote
2answers
249 views

PlaceHolder vs Literal for adding HTML markup generated at runtime

This question points out Literal vs Label while this question points out Panel VS. PlaceHolder but just today I was debating with my colleague on using PlacHolder vs Literal for adding HTML markup ...
0
votes
2answers
74 views

Ajax provider returns too much html Asp.Net

I am trying to make a partial update of a page in Asp.net. I call my .aspx page through ajax to build the content i need to append into a specific spot on my page and previously this has worked for ...
0
votes
0answers
22 views

Re-execute datasource sproc for dropdownlist control

I have a DropDownList which has a stored procedure for a datasource, as well as a button. I want the sproc to be executed each time the button is clicked so that the DropDownList contents are updated. ...
1
vote
1answer
60 views

Is it inefficient to use ASP web forms controls for every HTML tag on a web page?

Should I be using tags (or literal tags) for every piece of content on my page (h tags, p tags, etc.)? Even if it is not dynamic. Or is this considered to be inefficient having the server process all ...
0
votes
1answer
60 views

How to edit image's property when using Html.TextAreaFor?

I'm using TextAreaFor Html helper for editing content. Now I insert an image into the box and want to modify it's properties such as width, height.. but I dont see any buttons or context menu help me ...
0
votes
1answer
123 views

ASP.NET/Jquery Control Design : Where to keep HTML generation engine

This is a design question. I hope you guys will be able to help me with this. I am developing an autocomplete control. Its basically a service based control, where the responsibility of the service ...
0
votes
2answers
488 views

how to add menuItemClick event when menuItem is created programatically in asp.net?

In my asp.net web application, i have created a menu and menuItem programatically based on the Logged in user role.The Code is given below... Menu menu = new Menu(); menu.CssClass = "menu"; ...
0
votes
1answer
331 views

Populating asp.net controls using javascript can't be read on server side

I have an ASP.Net dropdown list that is populated using javascript like this: Dropdown list: <asp:DropDownList ID="Ddl" runat="server" AutoPostBack="true" ...
1
vote
1answer
227 views

ASP.NET wrap an asp:HyperLink in <li>'s, from server-side

I have the next structure for a menu item: class MenuItem { public string Path, Title; } I want to be able to Iterate an object of MenuItem[], creating a new object of asp:HyperLink on each ...
0
votes
1answer
100 views

ASP.NET 4.0 using Ajax with existing DropDownList control

I need to have an update occur on the backend every time the user changes a value in a ASP.NET DropDownList control. I want to do this using AJAX so the browser does not do a total refresh and ...
1
vote
1answer
109 views

ExtenderControl not functioning as expected

I am trying to make my own version of a repeater control. It is not a DataBoundControl; it won't be bound to a DataSource, DataSourceID, DataBind method etc etc. It has is a template nested inside it, ...
2
votes
1answer
100 views

ScriptControl WebResource Loading Order

I am adding a new control to a project that has some ASP.Net controls. Each control essentially comprises of a .Net class (inheriting ScriptControl) and a javascript file. Each of the js files are ...
0
votes
0answers
63 views

Active Directory Employee Search

I am building a form where I need to have a field where user can select any employee from Active Directory. I know how to search employee directory but I don't know if there is any control to do this. ...
-1
votes
1answer
520 views

access control property in ascx file

On simple ASPX sites I can access properties from ASPX file this way easily: // Code-Behind: public int Test { get; set; } // ASPX: <% this.Test = 0; %> But this doesn't work on ASCX ...
2
votes
2answers
514 views

Add the Umbraco “siteName” textstring to my .net usercontrol

I have a text string property type that I use to display the "siteName" in the page title: <title><umbraco:Item runat="server" field="siteName" recursive="true" /></title> What ...
0
votes
1answer
408 views

Umbraco 4.9.0 usercontrol error

I'm getting the following error in my usercontrol properties: Error reading usercontrols/BrandHub/emintRegister.ascx The following list shows the Public Properties from the Control. By checking the ...
2
votes
2answers
874 views

how to add buttons in content place holder at runtime in asp.net?

In my form i have added one content place holder and also added a button within th e content place holder manually.But now i want to add a button in the same content place holder at runtime. I tried ...
-1
votes
3answers
413 views

Button ClickEvent is not triggered

Afternoon All, I have two buttons on my web page that is used to lock and unlock a web page so that a user can lock the page and edit this without other users being able to access the record and then ...
0
votes
4answers
423 views

how to display html text inside the textarea control in asp.net[.net 4 framework]?

I have added one submit button and one textArea control in asp.net(4 framework) page.Whenever user clicks submit button, then i will get some html text and needs to display it in the textArea control. ...
0
votes
0answers
20 views

how can I define the key of x-axis to be string-based when binding to x-axis (I believe it easy to solve)? [duplicate]

Possible Duplicate: How to make the x-axis to ignore the order of the x values? First, I'm sorry if my English isn't that good.. The situation is like that (I want to bind the two series ...
0
votes
0answers
261 views

ASP.Net Printer Friendly Page

Morning All, I am trying to make a web page printer friendly. I have managed to complete this for one of my pages perfectly fine by having another style sheet and the referencing this is my master ...
1
vote
0answers
108 views

changing the asp:Image ImageUrl attribute Depending on Condition in Asp.net

i'm building a simple reporting applications , in which user has notifications i want to check if the notification is unRead i'll display a read image icon and if it was read , i'll display Read ...
0
votes
4answers
240 views

How would i add this to a repeater?

Morning, I am writing a simple quiz app. I am getting my questions and answers from the my MS SQL DB. How would i go about getting this and putting it into say a repeater control, so i can display 6 ...
0
votes
0answers
93 views

.Net Lock / Unlock query (Visible = True)

Morning All, I have a web page that currently enables multiple users to access the site and acssociated records. At the moment a the user to lock a record so they can edit this. This works with an ...
0
votes
2answers
52 views

.Net: code for BtnLock_Click

I have been trying to apply a solution to some functionality that a user requires on their system. A user requires me to implement a locking system on their system. They have multiple users which ...
0
votes
1answer
1k views

Cannot access asp.net changepassword controls in codebehind

I cannot access any of my asp controls in my codebehind. The .aspx page is as follows <%@ Page Title="" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true" ...
1
vote
1answer
171 views

How do I display data in asp.net that has follows a specific pattern/ format?

I have this table and what I want to is have something like this on the browser. The table has 8 rows and 3 columns Here's my sql query: "SELECT q.QuestionID, q.QuestionText, q.GroupNo FROM ...
0
votes
1answer
210 views

How do I group rows in asp.net's datalist control?

For example in my database there are 96 rows and what I want to happen is to group rows by four(the resulting table will have 3 columns with 8 rows). ex
0
votes
1answer
415 views

Cannot FindControl within dynamically generated table

I have a dynamically generated table and for each row in the table there a some form textboxes for the user to complete and then submit the form. The problem i'm having is accessing the values within ...
0
votes
1answer
691 views

asp.net (Visual Studio 2010) form validation controls

Afternoon All, I have a web form that i wish my user to fill out. On the form i have three fields that i wish to set validation on. One of these is a normal textbox, the other a textbox associated ...
0
votes
1answer
119 views

Control like 'Skills' in LinkedIn in asp.net?

Which control in asp.net can give me as close look and functionality as possible in asp.net to show skills as it is in LinkedIn. Please see following image. Skills in LinkedIn Thanks.
1
vote
2answers
270 views

Clear Textboxes

Morning All, I would like to have a cancel button on my web page that essentially i would like to clear form field and themn redirect users to the home page. I have 7 txt boxes that i will need to ...
0
votes
1answer
82 views

Is there any third-party tool for converting the data on any ASP.NET webforms controls to pdf easily?

Is there any third-party tool for converting the data on any ASP.NET webforms controls to pdf easily? I have a page that contains some ListViews and GridViews and I don't want to print the data on all ...
0
votes
0answers
347 views

cascading dropdownlist in a gridview with entitydatasource

I have two cascading dropdownlist in a gridview that binds by two EntityDataSource. it makes a error in second dropdownlist selected value. it makes error when postback occures: Databinding methods ...
1
vote
2answers
432 views

ASP.Net Details List 'Edit' function

Afternoon All, I am used to using gridviews but i am using a a details view for the first time. I am using Visual Studio 2010 with VB code. I have a grid view that displays items from a database ...
0
votes
2answers
315 views

ASP:Net LinkButton control Postback issue

I have an asp.net linkButton (or imageButton) control in my profile.aspx page. I'am checking Request.Querystring("id") in the page below in the code behind. http: ...
0
votes
1answer
1k views

ASP.Net Refresh GridView

Afternoon All, I am using a visual studio 2010. I have a web page which is used to record minutes of meetings. The page has a section that the user can use to add 'Actions' to the site. I can get ...
0
votes
0answers
353 views

asp.net dynamic control to help populate a list of actions (Minutes of Meeting)

Afternoon All, I have Visual Studio 2012 site that i am in the process of creating. It is to replace a paper based minutes of meeting system and now hold these electronically. I am able to get a ...
0
votes
1answer
598 views

asp.net RegularExpressionValidator: ValidationExpression=“(?i)^[\w\s0-9.-]+\.(pdf|doc|docx|xls|xlsx)$”

Morning All, I have a file upload control which allows my users to upload documents to folder named 'Uploads'. the file upload works fine. The issue that i have is with Validation. I only want ...
1
vote
2answers
376 views

'NewPageIndex' is not a member of 'System.Event.Args'

Afternoon All, I have a simple gridview with list items items that have been uploaded to file. I had an issue with paging on my gridview. As i selected page two the webpage would fail. After ...
0
votes
1answer
2k views

asp.net file upload (how to create a hyperlink to uploaded documents, displayed in my gridview)

Afternoon All, I have a simple file upload tutorial that i have completed for a site that i am developing in visual studio 2010. I just want to enhance the gridview that shows the uploaded file by ...
1
vote
2answers
1k views

<a href> tag to open excel file

I am currently using Visual Studio 2010 and wanted to have a link on my page that opened in a new window a simple excel sheet that is on a local drive. I have used a simple tag to open this file. ...
0
votes
1answer
1k views

ASP.Net CollapsiblePanelextender Control

Afternoon All, I am wonding if i can configure and use a collapsiblePanelextender in ASP.net within a table. I would likt this to be used for a minutes of meeting system that i am creating. I have ...

1 2 3