Tagged Questions

runat="server" is an attribute set to asp.net controls to sinalize the server that this should be accessible at server side, by being available as an object at pages code-behind.

learn more… | top users | synonyms

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 ...
11
votes
4answers
5k views

What is the status of runat=“server” tags in ASP.NET MVC?

Some texts on ASP.NET MVC state that "there are no runat server tags", even this MSDN article says this, when, right above that statement there is a code example with a runat server tag in the HEAD ...
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> ...
6
votes
3answers
5k views

LinkButton in ASP.NET MVC

I need to instantiate some ASP LinkButtons onto an ASP.NET MVC view page. I've tried a few things, and I cant get them to come out right. Heres my most recent incarnation of the code: the aspx file ...
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
349 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
1answer
261 views

What is the easiest (correct) way in ASP.NET MVC 2 to make a button-click display text?

I need to make a quick demo showing how to do interactivity on an ASP.NET MVC page. I opened an ASP.NET MVC project in Visual Studio 2010, put the view in design mode, dragged in a button, ...
2
votes
3answers
829 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
276 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. ...
1
vote
4answers
176 views

runat=“server” breaks my jquery / css functionality

I have a page that changes media on a page, like pictures or PDF's, using JQuery so that each user click doesn't require a page refresh / new database access. I have a DIV container that holds all ...
1
vote
2answers
2k views

what's the difference between <% %> and <script language=“vbscript” runat=“server”> in classic asp?

I couldn't find much documentation on the web so far now, the obvious difference seems to be that you cant mix html and vbscript using the "script" tag for example, this is ok <% public sub ...
0
votes
2answers
76 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
47 views

div tags - float attribute

I am new to div tags since I was using tables previously. I would like to display label and text box eg: First Name :________ for that I have written like this <div> ...
0
votes
1answer
115 views

ASP.NET MVC html writer bug?

It's probably a bug. Steps to reproduce: (1) Create a ASP.NET MVC 3 project (ASPX view engine) (2) Go to the Models folder and create a new simple model namespace MvcApp.Models { public class ...
0
votes
1answer
200 views

Control 'Menu1' of type 'Menu' must be placed inside a form tag with runat=server

In my Default.Master file I added the Menu Control. All seems good. But I got the error "Control 'Menu1' of type 'Menu' must be placed inside a form tag with runat=server. " at run time. What does ...
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 ...