Tagged Questions

9
votes
3answers
4k views

C# asp.net Why is there a difference between ClientID and UniqueID?

I know ClientID is used for javascript and UniqueId for server side and that ClientID uses an underscore (_) and UniqueId uses a dollar sign ($) in asp.net 2.0. But what I don't get is why use two ...
3
votes
6answers
721 views

Is there a way to use “<%= someObject.ClientID %>” in an external javascript file?

Is there a way to use "<%= someObject.ClientID %>" in an external javascript file? If I use the code <%= someObject.ClientID %> in a script tag inside my as(c/p)x page, it works fine. On ...
3
votes
2answers
686 views

How to insert the ClientID of a div into an OnClientClick event

In the XHTML for a page I have:- <asp:Button ID="bookNowButton" runat="server" CssClass="bookNowButton" OnClientClick="showHideLoggedInDiv('<%=bookingFormDiv.ClientID%>')" /> ...
2
votes
1answer
47 views

How does ClientIDMode work?

I'm preparing to do an .NET exam and I came across this question. I have been breaking my head over this but I can't figure it out :s I tried all of this but didn't come up with a clear answer... ...
2
votes
2answers
391 views

Finding the client ID of dynamically created controls?

How can I find the client ID of a dynamically created control? In my ascx, I have the following snippet. function DoSomething() { var loneStar= $find("<%= loneStar.ClientID %>"); ...
2
votes
2answers
381 views

Accessing ClientID of a Control in a different TD

I am trying to access the ClientID of a control in one from a javascript (using jquery) call in a control in another in order to do some client-side show and hide effects. Here's the basic ...
2
votes
2answers
254 views

ClientID getting changed when deploying asp.net 2.0 website to Framework 4.0

I have a website which is hosted on GoDaddy they have version 4.0 runtime. The issue is the client id of the server controls are generated as "contentPlaceHolder1_drpBanks" where it was earlier (when ...
2
votes
4answers
1k views

ASP.Net: ClientID not correct in code-behind of a user control

The following code does not work. The markup is in a User Control and I suppose that's why ClientID returns the wrong prefix for the TextBox id. Markup: <INPUT id="txtName" runat="server" ...
2
votes
1answer
202 views

How should we use ClientIDMode property that comes with asp.net 4.0?

How should we use ClientIDMode property that comes with asp.net 4.0?... When i should i use one over the other clientIdModes?
2
votes
3answers
431 views

ClientID invalid after moving code into DotNetNuke module

I am porting an existing application to a DotNetNuke module and discovered bizarre behavior. I use ClientID when creating javascript so that the code can identify the HTML elements. Normally that ...
1
vote
3answers
23 views

How to get clientID of Datalist control using jquery

How to get clientID of Datalist control using jquery , I tried using the code below with no succes: $(document).ready(function(){ $('#<%=txtRenewalDate.ClientID %>').datepicker(); ...
1
vote
3answers
151 views

How to access the ClientID from a ServerControl in an external JavaScript

At the moment, if I use JavaScript in my SharePoint projects, I add the code into the *.ascx file, in a <script type="text/javascript"></script> block and create for each element a ...
1
vote
2answers
173 views

How to use ClientIDMode in ASP.NET 4

The default value of ClientIDMode for a page is AutoID. The default value of ClientIDMode for a control is Inherit. If you do not set ClientIDMode for a page or for any controls on the page, ...
1
vote
2answers
164 views

ASP.net over ride client ID for form elements

Given a textbox: <asp:Textbox runat="server" id="txtAddress1" /> This renders as something similar to: <input name="ctl00$mainContent$txtAddress1" type="text" ...
1
vote
2answers
322 views

Why I cannot add clientId of my textBox in the mark-up here so that I can find it with jQuery?

Simply I am trying to pass the client Id of one textBox 'txtPersonId' for the client-click event so that I can traverse to that textBox control and pass its jQuery wrapper to the loadePerson() ...
1
vote
4answers
986 views

Accessing a control in asp.net content page through Javascript

I have a form in my content page for which I am doing some client side validations via Javascript. The Javascript behaves as expected if I place the JS code directly in the content page. But if I ...
1
vote
3answers
1k views

Calling ClientID from aspx

<input type="checkbox" id="chbSaveState" runat="server" tabindex="3" onchange="SaveState(""<%= chbSaveState.ClientID %>"")" /> that doesn't work, the error says: Parser Error Message: ...
1
vote
1answer
521 views

How to get ClientID for control generated for a BoundField in ASP.NET?

I have a form with BoundFields in it and I need to get ClientID(s) for control(s) associated with each BoundField I have in the form. How can I do it? UPD: I do not have control id. All I have is ...
0
votes
0answers
5 views

ClientID errors for datalist

I am trying to get the clientID of the textbox used in the datalist with no success, I have tried the foolwing code which comes up with the error: Object reference not set to an instance of an ...
0
votes
2answers
21 views

Getting ClientID of textbox in CreateUser Wizard using jquery

I want to check the username availbilty so I have this code: <script type = "text/javascript"> function ShowAvailability() { $.ajax({ type: "POST", ...
0
votes
2answers
117 views

Get ClientID of a Control Placed INSIDE a DataControl

Can anyone help me to get the ClientID of a control which is kept in the ItemTemplate of an DataControl? My control is like this. <asp:ListView ID="ListView1" runat="server"> ...
0
votes
4answers
184 views

Issue getting .ClientID in ASP.NET C#

I have the following in the uploadError javascript function for AsyncFileUpload from AJAX toolkit: function uploadError(sender, args) { document.getElementById("<%# uploadResult.ClientID ...
0
votes
0answers
166 views

Changing “name” attribute of radio button in markup generated from ASP.NET

In ASP.NET, how can I control the name attribute assigned to radio buttons in the generated mark-up? More precisely I have several RadioButtonLists. The radio buttons end up being named ...
0
votes
0answers
81 views

Calling a jquery function from inside a javascript function

I have a little problem I cannot figure out. Hopefully someone here knows how to do it! I am trying to use a jquery function by callling it from another javascript function. Is that possible and if ...
0
votes
1answer
146 views

ASP: button to input submit

I am trying to use literalcontrol to add a button as input type="submit" litLevelList.Text += string.Format(" &lt input type='submit' id='{0}' value='{1}' name='{2}' >", btnSave.ClientID, ...
0
votes
1answer
248 views

Need the clientId of a textbox inside a content control using javascript

I have a masterpage that contains all the javascript and inside the content control, there is a link that calls a javascript function and I want to pass the id once it's rendered differently by the ...
0
votes
1answer
841 views

asp.net external JavaScript file doesn't find Control.ClientID

On load I'm both calling a JavaScript setTimeout() function that will hide a .NET Panel control, and hiding it in the code behind on first load. Clicking the save button will set the Panel to visible ...
0
votes
2answers
129 views

At what asp.net page event are clientIDs assigned?

I want to do something like this: Panel divPanel = new Panel(); divPanel.ID = "divPanel"; this.Page.Controls.Add(divPanel); string script = "function alertID(){alert("the id is: ...
0
votes
1answer
913 views

What is the correct setting of ClientIDMode in ASP.Net 4 to get ASP.Net 2.0 rendering

We have just updated our application from ASP.Net 2.0 to ASP.Net 4.0. We have included in the web.config in the system.web element: <pages controlRenderingCompatibilityVersion="3.5" ...
0
votes
1answer
399 views

Expanding ClientID in an event string

I'm having a problem with <%= obj.ClientID %> expansion, in a .ascx user control. I have a .js file, containing a javascript function: function doSomething(objectId) { ... } I have a .ascx ...
0
votes
2answers
1k views

how to obtain the client id of a ContentPlaceHolder in an easy manner?

i need to add JavaScript calls in some controls attributes, i am using master pages but in order to obtain the contentplaceholder client id i am iterating over the forms controls. is there another ...