Tagged Questions
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
830 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 ...
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
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
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
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 ...