Web Forms :: Disable A Single Intem In Dropdownlist Or Stop The Ddl Change Event For A Single Item?

Sep 20, 2010

I am trying something apart of my boundries, is there any way to disable a single intem in dropdownlist or stop the ddl change event for a single item.

View 2 Replies


Similar Messages:

Forms Data Controls :: Using Multiple Tables Within A Single DataSet And Single SqlDataSource?

May 19, 2010

I have a stored procedure that returns 3 tables within the single recordset it returns. If I set a SqlDataSource to get data from this procedure, it works, but it only returns the first table. I want to have a GridView display the data from the 2nd or 3rd table using a SqlDataSource, but I can't figure out how to specify a particular table.

While there are some posts discussing this out there, I can't get a definitive answer about whether or not this is even possible (?). In a worst-case scenario, I can create another SP that only returns the 3rd table - but that creates a little maintenance headache that I would prefer to avoid.

View 4 Replies

Stop The Tag Builder Escaping Single Quotes MVC 2

Oct 13, 2010

I have the following HtmlHelper method that I want to create a button that does a redirect with JavaScript:

public static string JavaScriptButton(this HtmlHelper helper, string value,
string action, string controller, object routeValues = null, object htmlAttributes = null)
{
var a = (new UrlHelper(helper.ViewContext.RequestContext))
.Action(action, controller, routeValues);
var builder = new TagBuilder("input");
builder.Attributes.Add("type", "submit");
builder.Attributes.Add("value", value);
builder.Attributes.Add("class", "button");
builder.Attributes.Add("onclick", string.Format("javascript:location.href='{0}'", a));
builder.MergeAttributes(new RouteValueDictionary(htmlAttributes));
return MvcHtmlString.Create(builder.ToString(TagRenderMode.SelfClosing)).ToString();
}

The problem is that the line that creates the onclick handler is getting escaped by the tagbuilder, the resulting html is: <input class="button" onclick="javascript:location.href=''" type="submit" value="Return to All Audits" />

View 1 Replies

Forms Data Controls :: After A Single Click All The Button Become Disable?

May 20, 2010

i have used a button in gridview.i want after a single click all the button become disable..

View 9 Replies

Web Forms :: Disable Single Quote Greater Than And Less Than Characters In TextBox?

May 7, 2015

how can I disable the single quote, greater than and less than character when typing it into textbox.

And also prevent the copy, paste that character into textbox.

View 1 Replies

DataSource Controls :: Using LINQ To Pull Out A Single Value From A Single Result Row Of A Join Query?

May 25, 2010

For context: First of all, I am new to LINQ, as I have been using SubSonic for quite some time now.

I have two tables, Users, and Affiliates. They both have a very typical schema. The FK that joins them is the UserId field, which is in the Affiliates table. I want to create a LINQ query that pulls the Username from the Users table using the AffiliateId value. The AffiliateId is a primary key of the Affiliates table.

I have tried to accomplish this using many variations of the following code:

[Code]....

In the above query, I expect to get a single row result set. However, I instead receive the entire table of results.

How can I make this work? I have yet to see an example or article out there to do what I am trying to do.

View 9 Replies

Open A Single Worksheet (single Tab) From A Huge Excel File On A Web Browser Using C#

Feb 27, 2010

I have huge excel files that I have to open from web browser. It takes several minutes to load huge file. Is it possible to open a single worksheet (single tab) at a time from excel file that contains many worksheets? I have to do this using C# / asp.net MVC

View 5 Replies

Disable EventValidation For Single Control?

Jan 11, 2010

I know this is a very debated topic, and usually when you are thinking about this as a solution you might want to rethink your UI logic.

I know I can pass validation using ClientScriptManager.RegisterForEventValidation. But, I'd really like to know. Is it possible to remove event validation for a single control? Is there a way work around for this?

I'm modifying a DropDownList, from the client side after it's rendered.

View 2 Replies

C# - Disable Caching On A Single Page?

Oct 14, 2010

I have checked this thread. [URL]

And wondering if I can put the answer inside page_load ?

If not how do I disable the cache on for a single page?

View 1 Replies

Web Forms :: Amend Single Query String To Multi-item Listbox?

Jul 26, 2010

I have this code which takes a value from a dropdown control as a parameter.

[Code]....

I'm now changing to a list control so that multiple items can be selected. So far I have some code that places the items selected into a string that looks like this:

'item1','item2','item4'

For the above example I would need all the the records returned when the field action_ref contains either item1 or item2 or item3.

View 4 Replies

Web Forms :: Stop Showing Drop Item Of Dropdownlist?

Jan 20, 2011

how to stop showing drop item of dropdownlist.

I need next item of dropdownlist after pressing down arrow without showing all drop items.

View 5 Replies

Disable Windows Authentication On Single Location?

Mar 7, 2011

I have a web application and I want to provide anonymous access to a couple of the web services in it so that we can access the web services from computers without a windows login on our network.

I've tried the stuff here Disable authentication on subfolder(s) of an ASP.NET app using windows authentication. I've done this:

[Code]....

These both "work" in that they allow access to the web service for anonymous users. However, it seems that IIS still sends an authorization challange because when I access the service from a browser I get a box to enter my username and password. If I hit cancel I get access to the page anonymously. However, some of our clients don't handle this well and just fail because of the 401 return code.

Is there a way to completely disable the windows authentication on that single location such that IIS will not try and establish a windows authentication?

View 3 Replies

C# - Disable Caching For A Single JS File Using Web.config?

Mar 8, 2011

I currently cache everything possible on my site (images, JS, CSS). There is only one JS file that I need to be loaded fresh every single time. How do I omit just one file from caching, using web.config, whilst leaving everything else cached?

Note that I tried another link here, and it didn't seem to stop the caching of my file: How do I disable caching of an individual file in IIS 7 using weserver config settings

View 2 Replies

C# - Update Only A Single Item In Linq?

Nov 10, 2010

Currently I update a single item in a database as follows:

var master = (from tmi in db._Masters where tmi.Id == Id select tmi).FirstOrDefault();
master.logPosition++;
db.SubmitChanges();

This strikes me as inefficient, as (I think) I am pulling out a full DB row to just update a single value. Is there a more efficient query I can use?

View 3 Replies

Web Forms :: Stop Showing Drop Item Of Dropdownlist Or Listbox?

Jan 24, 2011

how to stop showing drop item of dropdownlist or listbox

I need next item of dropdownlist or listbox after pressing down arrow without showing all drop items.

and It must be typable within dropdownbox or listbox

View 2 Replies

Web Forms :: Single DropDownList Running Multiple Queries?

Jun 16, 2010

I have a drop down with several option. I would like that if a certain item is select then a certain query will run. I read a post that
azamsharp on 12/23/03 .In that post he suggested to do:

string myProcedure = DropDownList.SelectedItem.value.ToString();

SqlCommand myCommand = new SqlCommand("myProcedure",myConnection);

while reading through the post it seems that this wasn't a great idea.

View 15 Replies

How To Invalidate A Single Data Item In The .net Cache In VB

Jun 3, 2010

I have the following .NET VB code to set and read objects in cache on a per user basis (i.e. a bit like session)

'' Public Shared Sub CacheSet(ByVal Key As String, ByVal Value As Object)
Dim userID As String = HttpContext.Current.User.Identity.Name
HttpContext.Current.Cache(Key & "_" & userID) = Value
End Sub
Public Shared Function CacheGet(ByVal Key As Object)
Dim returnData As Object = Nothing
Dim userID As String = HttpContext.Current.User.Identity.Name
returnData = HttpContext.Current.Cache(Key & "_" & userID)
Return returnData
End Function

I use these functions to hold user data that I don't want to access the DB for all the time. However, when the data is updated, I want the cached item to be removed so it get created again.

How do I make an Item I set disappear or set it to NOTHING or NULL?

View 1 Replies

Web Forms :: How To Assign Multiple Buttons To A Single Event

Jul 16, 2010

I am trying to learn C# web programming. I am trying stuck and am unable to proceed for 2 days.I have a simple table with three columns (ISBN, Book Name and Delete).The column has a delete button. When the delete button is clicked, the book is removed from the session. The books are stored as objects within the session.The trouble I am having is when a user clicks on the "Delete" button, how do I pass the ISBN value to the onclick method. Can someone kindly tell me the best way to achieve this?I tried doing it below but am going nowhere.

[Code]....

View 12 Replies

Asp:menu / Single Branch When A User Clicks On An Item?

Jun 29, 2010

I have looked around different properties of asp:menu and set different properties but I just can't figure out a way to make asp:menu behave like "sample 2" from the following url.

http://simplythebest.net/scripts/DHTML_scripts/dhtml_script_122.html

I just want a single branch when a user clicks on an item, is this possible with asp.net's menu item?

View 3 Replies

Using The Item Template To Bind Values From 3 Dropdowns Into A Single Value?

Feb 24, 2011

I am using an asp.net details view. I added an entry into the details view like so...

<asp:BoundField DataField="DTMON_F" HeaderText="Monday Start:" InsertVisible="False"
ReadOnly="True" SortExpression="DTMON_F" Visible="false" />
<asp:TemplateField HeaderText="*Monday Start: " SortExpression="DTMON_F">
<EditItemTemplate>

[Code]....

Now I need to FIRST concatinate the values from the dropdown then bind the data gathered in the edit template form the 3 dropdowns. How might I do that?

View 2 Replies

Web Forms :: Dropdownlist Result Set Query Shows Multiple Time How To Set Single

Nov 12, 2010

I Pieces
NA 400

View 7 Replies

VS 2010 Binding Single Item Without Using FormView / DetailsView / Repeater

Aug 11, 2010

The title pretty much explains it. I want to bind a single item to a detail type control. I can bind to a repeater perfectly fine and obviously only one item will be displayed. It seems like there would be a better suited control for this. I know about FormView and DetailsView but they both generate a table which I don't really want. Something similar to the Repeater since it doesn't generate any content other than what you put in the template.

View 5 Replies

GridView Making A Single Edit Item Template Take The Entire Row?

Jan 6, 2010

I've got this gridview. The gridview uses TemplateFields as the number of fields in the database's table. What I do next is use an ItemTemplate to present the correct column info.

Now, problems rise when the user click's Edit. Since I can only use EditItemTemplate to edit I am resulted with a control in each column. What I really want is to have a single row with no columns so I can easily style the edit mode (having a table with a different layout for example).

Is this possible?

View 1 Replies

Change Single URL Query String Value?

Sep 28, 2010

I have an ASP.NET page which takes a number of parameters in the query string:

search.aspx?q=123&source=WebSearch

This would display the first page of search results. Now within the rendering of that page, I want to display a set of links that allow the user to jump to different pages within the search results. I can do this simply by append &page=1 or &page=2 etc.

Where it gets complicated is that I want to preserve the input query string from the original page for every parameter except the one that I'm trying to change. There may be other parameters in the url used by other components and the value I'm trying to replace may or may not already be defined:

search.aspx?q=123&source=WebSearch&page=1&Theme=Blue

In this case to generate a link to the next page of results, I want to change page=1 to page=2 while leaving the rest of the query string unchanged.

Is there a builtin way to do this, or do I need to do all of the string parsing/recombining manually?

View 4 Replies

Visualize In Single Value - DropDownList How To Set DataSource

Dec 29, 2010

I have a DropDownList. I need visualize in it a SINGLE value (ListItem) the current Logged in User, like

<asp:ListItem>Joe</asp:ListItem>

Here my wrong code, if the UserName is "Joe", the DropDownList visualize for every single letter an ListItem: Example:

<asp:ListItem>J</asp:ListItem>
<asp:ListItem>o</asp:ListItem>
<asp:ListItem>e</asp:ListItem>

This is my code:

<asp:DropDownList ID="uxUserListSelector" runat="server"></asp:DropDownList>
MembershipUser myCurrentUser = Membership.GetUser();
myUserList.DataSource = myCurrentUser.UserName;
myUserList.DataBind();

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved