Tagged Questions
3
votes
2answers
401 views
HTML Table Row gets too wide after refresh with JQuery load
I have got a problem with a customer website (within Internet Explorer only, tested with Internet Explorer 9). Everytime a table inside a div gets refreshed using JQuery's load-Function a single table ...
2
votes
2answers
157 views
partial view not showing
i have a partial view named "_PartialPage1" under "X" controller.
here's the content of my partial view:
<div>Hello</div>
my X controller contains this:
public ActionResult ...
3
votes
1answer
3k views
mvc partial view ajax update returning the partial view as a page
I have a partial view that upon adding an item to the database needs to update.
The Index.cshtml:
@using (Ajax.BeginForm("Index", "WinEntry", new AjaxOptions { HttpMethod = "POST", ...
1
vote
2answers
1k views
Refreshing Partial View in MVC 3
I have a partial view that I have included on my _Layout.cshtml. It simply has a javascript function that changes an image based on the state of my system. I don't need to reload any data, I don't ...
3
votes
2answers
10k views
Continous refresh of PartialView using ASP.NET MVC 3
I am developing a website using ASP.NET MVC 3.
I have a number of sections containing news from different departments, as shown in the picture below:
http://i.stack.imgur.com/G21qi.png
The sections ...