runat="server" is an attribute set to asp.net controls to signalize 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

0
votes
1answer
21 views

why to include runat=“server” in ASP.NET

HI Guys actually i was digging & quite confused from since i am working on Web with ASP.NET THAT whenever i need to use a server tag (control) like <asp:Label ID="lblName" /> & then to ...
0
votes
2answers
50 views

Making a Control to be runat=server

In my application I have created a button dynamically & its name is "Dynamic_Button". Is it possible to make the button to be runat=server. I just tried the code but it doesn't work. ...
1
vote
2answers
221 views

Bypassing ASP.NET's One RUNAT SERVER FORM per page

ASP.NET restricts using more than 1 runat="server" form. I have a Master Page, currently with no form. I have many other pages, some with a form (Register.aspx - Login.aspx), some without a form. I ...
0
votes
5answers
90 views

runat=“server” breaks my jquey - datapicker

The runat="server" is breaking my jquery. I have two input, but for testing purpose added runat="server" in only one of those. Actually , I need to add on both. Below you can find JS script to ...
1
vote
3answers
567 views

How Access A Server-Side div In Code Behind (Inside Content Page)

How access a server-side div in code behind (inside content page)? mean there is a div in content page like below : <div id="MyDiv" runat="server"> </div> but the code below does not ...
1
vote
1answer
378 views

Control 'ctl07' of type 'TextBox' must be placed inside a form tag with runat=server.

I have a problem you can see at the title. <form id="form1" runat="server"> <div> <br /> <asp:GridView ID="GridView1" runat="server"> ...
1
vote
4answers
2k views

Error in table when adding runat=server

I have a html table in my ASPX page and would like to use it in code-behind for some processing. The table is shown as below: <table class="hovertable" id="tblData"> <tr> ...
1
vote
1answer
213 views

Accessing server-side control by its ID property in ASP.net

On my default.aspx page I have a bunch of divs with an ID and runat="server": <div id="serverOne" runat="server"></div> <div id="serverTwo" runat="server"></div> ...
0
votes
0answers
109 views

Use dont net server button to toggle google map layer

IN aspx while i use a runat = "server" button to toggle between layer. The page is loaded again and the changes are lost. What should i do ? It works properly while i use plain html, As it requires a ...
0
votes
4answers
2k views

ASP: runat=server for dynamic control

In the Page_Load method I create a couple of controls, based on various conditions. I would like to register server side code with those controls. However, for the last part I need to declare my ...
0
votes
3answers
719 views

Javascript conflicts with Asp.net runat=server attribute

I am running some java script with a couple html controls. Everything works fine. Except when I add the runat = " server" attribute to the html control, so I can access it in the code behind, the ...
0
votes
0answers
78 views

creating menu in asp.net the horizaontal orientation the multiple submenus, their visiblity should be just below parent

I want to create menu in asp.net, submenus may have submenus & should be visible just below its parent menu. Not in side ways fashion. Like Menu | ChildMenu ...
1
vote
2answers
668 views

How to access HTML control in C# code behind without “runat=server”?

I understand that you can access the server-side HTML control (which has "runat=server") from code behind in C# with FindControl. But my HTML table is a dynamic table, so I can't use it server-sided. ...
0
votes
1answer
1k views

ResolveClientUrl inside runat server head

I'm working on a web form site. The head tag has the runat server attr. in the master page. I'm trying to use ResolveClientUrl for a .js file like this: <head runat="server"> .. ...
1
vote
1answer
142 views

Can the code within a <script runat=server> read form values which are posted by a form which doesn't have runat=server attribute?

I want to post a form on html and process the variables with asp.net code, like writing a php code. do I have to use <% %> or can I create an empty file with <script runat=server> ...
0
votes
3answers
596 views

Unable to render html control with runat=“server” dynamically

Here is a piece of my code through which i am rendering html controls with runat="server" var sb= new StringBuilder(); sb.AppendLine(" <div class='ItemDiv'>"); sb.AppendLine(" <h2>More ...
2
votes
2answers
103 views

Is it semantically valid to wrap all page's tags inside the form tag - ASP.net

I am not new to ASP.net. Actually, I am not even learning it. But, I was recently evaluating some Web sites and saw that awful <form runat="server" ..> that wraps the whole page and contains all ...
-1
votes
2answers
1k views

runat=“server” div causes System.Web.HttpException when accessed from control collection

I have a div that is runat="server". The div is contained in a panel, and within the div are some controls. All of the controls outside of the div (but within the panel) are cleared when I run my ...
0
votes
1answer
511 views

Manipulate HTML Elements without runat=“server”

Take a look at this; right now, it's just wishful thinking. Default.aspx <ul id="menuemenue" runat="server"> <li><a href="www.google.com">google</a></li> ...
1
vote
1answer
4k views

document.getElementById('id').value failing in ASP.net javascript function

Hidden fields: <input type="hidden" id="hidOrg1" runat="server" value="" /> <input type="hidden" id="hidBT" runat="server" value="" /> javascript function: function doGetWave(obj) { ...
1
vote
2answers
392 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 ...
3
votes
1answer
432 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) ...
0
votes
1answer
685 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
224 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
1k 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 ...
1
vote
4answers
1k 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 ...
3
votes
4answers
335 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.
0
votes
1answer
91 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
390 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 ...
1
vote
4answers
7k 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: ...
5
votes
7answers
1k 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 ...
0
votes
2answers
893 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
255 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()%>); ...
4
votes
5answers
2k 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 ...
2
votes
1answer
874 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, ...
3
votes
2answers
674 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 ...
0
votes
1answer
335 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 ...
2
votes
3answers
3k 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 ...
3
votes
2answers
642 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 ...
3
votes
2answers
5k 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 ...
1
vote
3answers
1k views

<script runat=“server”> vs. code-behind file

Are there any caching/performance/significant differences between c# code placed in <script runat='server'></script> as oppose in the code-behind?
5
votes
1answer
696 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 ...
9
votes
3answers
10k 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 ...
7
votes
6answers
3k 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" ...
29
votes
10answers
24k 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> ...
3
votes
4answers
8k 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. ...
15
votes
4answers
8k 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 ...
87
votes
8answers
34k 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 ...