Tagged Questions

50
votes
7answers
15k views

Why does ASP.NET webforms need the Runat=“Server” attribute?

Why do I have to specify runat="server" on all my ASP.NET controls when it is a mandatory attribute and server is the only option available in my limited knowledge of ASP.NET, and I get an error if I ...
10
votes
9answers
9k views

ASP.Net Master Page and File path issues

I'm trying to add a script reference to jQuery in my master page so that it will work for any page. It currently looks like this <script type="text/javascript" src="jquery.js"></script> ...
5
votes
2answers
456 views

Why do ASP.Net server control declarations require the runat=“server” attribute?

Surely the fact that they're declared beginning with "<asp:" is enough to infer they're server controls? Or is it just included for completeness (so they look similar to the server control ...
5
votes
6answers
1k views

asp.net: difference between runat=“server” and server controls

What is the difference in functionality between <asp:Button id="button1" Text="Click me" runat="server" OnClick="submitEvent" /> and <input type="button" id="button1" runat="server" ...
3
votes
1answer
127 views

Why is runat=“server” required for controls in skin files?

Like the title says.. why ? I know why its required on the normal ASP.NET controls, there are numerous questions on SO about that. But since you can only define .NET controls (no normal HTML markup) ...
3
votes
4answers
128 views

When isn't runat=“server” used in asp.net?

When don't you need to use runat="server" in ASP.NET? EDIT: Thanks for all the answers, but I was really thinking of runat="server" inside an <asp: tag.
3
votes
7answers
352 views

Is it bad to use runat=“server” on <tr>?

I'm supporting an application that uses runat="server" all over the place to show/hide table rows. For example, in places where there are dependent DropDownLists, the row with the child ddl will be ...
3
votes
4answers
513 views

How can I use runat=“server” on a script tag in asp.Net

I don't necessarily need to run it at server, however, I would like to use the ~/js/somefile.js syntax. Previously, I had just set everything with Absolute paths and set my project to be at the root ...
3
votes
2answers
243 views

How to avoid Adding runat=“server” destroying my server tags <%…%>

Adding runat="server" is not rendering my server tags <%...%> I have a masterpage with a few <li> for menu and since I have to set class=selected for the current page, I am using a ...
2
votes
3answers
831 views

asp.net form runat server

i have a search form on every page, hence i put it on the master page. after adding runat=server to that form i am now unable to use other forms that runat server ;) how do people usually get around ...
2
votes
2answers
277 views

Performance knock on using runat=server for html controls

I tried to google this and came up a little short, so maybe someone here can shed some light on the topic. For url rewriting purposes in asp.net, I would like to declare all images and other ...
2
votes
4answers
4k views

How can I access runat=“server” ASP element using javascript?

It seems everyone is doing this (in code posts etc.)...but I dont' know how :( whenever i try to manipulate an asp element using javascript i get a "element is null" or "document is undefined" etc. ...
0
votes
2answers
77 views

Can asp.net have <tbody id=“blah” runat=“server”>?

I have a <table> <tbody>..some stuff</tbody> <tbody id="sometimesHidden" runat="server">...</tbody> </table> But the .cs code says "The name ...
0
votes
1answer
51 views

Capturing/Logging image related data using Django/Python

I come from a ASP.Net background and taking baby steps in open source world. I have an image based application and for every image click I want to log data on server. I'm using Django/Python to host ...
0
votes
2answers
106 views

Help in solution more than one form in asp.net as to my logic its compulsory

As per my layout one form(all forms with runat=server) should be in header right top and the other one I want to place in section's article. So I will have no problem in positioning of contents. How ...
0
votes
4answers
1k views

Getting ID from asp.net runat server in jQuery

i'm trying make some stuffs in jQuery using asp.net. but the id from runat="server" is not the same as the id used in html. i'm used to use this to get the id from this situation: ...
0
votes
2answers
390 views

Why does urls get encoded in <link> tags within <head runat=“server”> and how do I avoid it (asp.net)

(I have tested this with a vanilla asp.net site running from the webdev server and it is a problem here also): I have the following markup in my .master file <!DOCTYPE html> <html> ...
0
votes
3answers
120 views

Is runat=“server” required for HTML tags which have CSS style built by ASP.NET?

I got this div tag who's background image's being set in the CSS using some method like this.. Inline CSS:- .id0, .mySprite:hover div { background-image: url(<%=GetImage()%>); ...
0
votes
1answer
168 views

master pages, form pages, form runat=server > all onclick methods on master page?

the problem i have is that i have multiple nested master pages: level 1: global (header, footer, login, navigation, etc...) level 2: specific (search pages, account pages, etc...) level 3: the ...