1
vote
3answers
70 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
49 views
Performance knock on using runat=server for html controls
Hi there...
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 …
1
vote
1answer
168 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 …
4
votes
2answers
139 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 …
3
votes
4answers
698 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
…
3
votes
7answers
480 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
7answers
2k 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>
…
2
votes
4answers
591 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. …
7
votes
3answers
1k 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 …
