Tagged Questions
The viewpage tag has no wiki summary.
9
votes
4answers
3k views
Dynamic typed ViewPage
Is this possible? Here's what I'm trying:
public ActionResult Index()
{
dynamic p = new { Name = "Test", Phone = "111-2222" };
return View(p);
}
And then my view ...
7
votes
4answers
5k views
Get focused View from ViewPager
i use the ViewPager for switching views with left/right swipe.
The ViewPager needs an Adapter, so i builded this one:
public class ListViewPagerAdapter extends PagerAdapter {
protected static final ...
2
votes
1answer
185 views
ASP.NET MVC ViewPage rendered in a ViewPage
I'm wondering if it is possible to render a ViewPage inside of a ViewPage.
Normally, you'd have this:
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<my_object>"%>
and then in ...
2
votes
7answers
585 views
trying to create a asp.net mvc viewpage w/o codebehind page
Trying to create a view page in my asp.net-mvc app.
I have a strongly typed view, and I have also ovverriden the MVCPage class also.
For some reason when I load the page it says it can't load the ...
1
vote
1answer
74 views
Razor: How to force views in a folder, inherit from a special class
I want to force views in a folder (for example folder associated with ArticleController, named Article in View directory) that inherits from a CustomViewClass. Note that I know how to change ...
1
vote
1answer
589 views
Forcing animation on ViewPager
I'd like to force the animation triggered by the finger-swipe on a ViewPager - something like, when I press a button outside the ViewPager, it does the fancy animation.
I've tried something like:
...
1
vote
1answer
49 views
Mvc viewpages and custom data for all pages
I need some data to be available on all the viewpages inside the website. The data comes from an parameter supplied to all the routes, i want to get that param and get the according data for it and ...
1
vote
2answers
186 views
MVC Multiple ViewPage items in aspx required
I need to pass in 2 objects to a page to access Model.NewsItems and Model.Links
(the first is a class of news item objects with heading, content etc and the Links are a set of strings for hyperlink ...
1
vote
4answers
543 views
ViewUserControl containing ViewPage
Is there a way to get a reference for the ViewPage that contains a parital view from the partial view ??
1
vote
1answer
1k views
ASP.NET MVC ViewPage Lifecycle
I would like to know when (which event/function) the class System.Web.Mvc.ViewPage runs when it reads the @Page directive of the view.
In particular, I would like to programmaticly interpret the ...
0
votes
3answers
70 views
Access WebViewPage from custom HTML Helper
I've got a ASP.NET MVC 3 Razor Web Application.
I've got a WebViewPage extension:
public static bool Blah(this WebViewPage webViewPage)
{
return blah && blah;
}
And i want to access ...
0
votes
1answer
841 views
using viewpager, gallery or viewanimator
I'm trying to fling a view object (e.g an image) from left to right. First i used Gallery with a custom adapter. Then i tried ViewPager. I couldn't decide which one has a better performance. I guess ...
0
votes
2answers
87 views
Problem calling extension method on a ViewPage
I created the following extension method for a ViewPage:
using System.Web.Mvc;
namespace G3Site {
public static class ViewPage_Extensions {
public static void Test(this ViewPage vp) {
...
0
votes
1answer
198 views
Inheriting from ViewPage forces explicit casting of model in view
I try to inhering from ViewPage as shown in this question http://stackoverflow.com/questions/370500/inheriting-from-viewpage
But I get a
Compiler Error Message: CS1061: 'object' does not contain ...
0
votes
4answers
945 views
ASP.NET MVC pass information from controller to view WITHOUT ViewData, ViewModel, or Session
I have a unique scenario where I want a base controller to grab some data and store it in a list. The list should be accessible from my views just as ViewData is. I will be using this list on every ...
0
votes
2answers
764 views
Reusing ViewPage/HtmlHelper in seperate project in ASP.NET MVC using C#
I want to use the ViewPage/HtmlHelper class in the System.Web.Mvc namespace in a seperate project. I imported the relevant libraries and then tried this:
using System.Web.Mvc;
using ...
0
votes
3answers
819 views
Is it right to generate the javascript using C# in ASP.NET MVC view page?
[Sorry for long question but it is necessary to explain the problem]
I am working on a learning website and it is supposed to show a list of messages to user if there are any. Something like this:
...
0
votes
1answer
66 views
When I click to open a ViewPage or a ViewUserControl Visual Studio 2008 hangs for me
When I double click on a ViewPage or a ViewUserControl in Visual Studio 2008 the whole application hangs for me, I have no idea why...
The only error log I can find in the Event Log is this:
.NET ...
0
votes
2answers
592 views
ASP.NET MVC Deployed project not working: Inheritance System.web.mvc.viewpage fails?
i have a MVC project which runs perfectly local. When I deploy to the production server I receive a compilation error:
BC30456: 'Title' is not a member of 'ASP.views_home_index_aspx'.
It makes me ...