Designers / Expression Or SharePoint Designer And Real Source Control?
Jun 15, 2010
I'm trying desperately to move from VSS to a real source control system. Options include TFS and SVN.My designers need to keep their ability to modify source files and instantly preview their changes in a browser without having to commit their changes. Using FPSE with VSS, this works flawlessly, since saving a file causes the copy in the working folder on the dev server to be updated, so they can just save and refresh their browser which is pointed at the dev server.The site in question consists of 350k+ lines of classic ASP code and some new ASP.NET MVC. They only need to be able to modify views within the MVC code, not C#. Though Expression includes a version of Cassini for local debugging, Cassini does not support classic ASP. Surely someone has solved this problem before. It can't be necessary to install IIS on each designer's machine (this is absolutely untenable). I need a way to have a common working folder on a dev webserver updated whenever someone saves a file locally, just like using FPSE.
View 2 Replies
Similar Messages:
Dec 7, 2010
This query related to SharePoint Designer / XSLT List Form Webpart Customization in SharePoint designer 2010
I am using SharePoint designer 2010 to design my page.
I am trying to add list and customize it.
Following is customization task.
in my list I have two columns Title and Short Description . when I add list on my test page it show one by one following manner.
[code]
Problem is I want show it following manner .
[code]
How I Customize it ? I tried almost options from ribbon but didn't success.
View 1 Replies
May 5, 2010
Sharepoint's lists functionality is powerful. Because I don't want all the other functionality of Sharepoint, I have been looking for an alternative (preferrable open source) without much success.
Basically I want to have a platform or web application that:
allows us to define custom datatypes (for different kinds of customer products) has the possibility to create views or forms to present to the user for reading, creating or updating the information of the items of a given datatype a ui to setup this configuration is not required but would be nice to have
In an ideal scenario there is an API to get the data out afterwards for further processing.
View 1 Replies
Jul 6, 2010
So I've created an asp.net web application on the same server the sharepoint site is located on. If I create an Access view of a list on the sharepoint site, which will then create an Access Database, can I then use that Access database in an access data source in my web application?
If not, what's the best method of attack to access sharepoint list data from thisasp.net app?
View 4 Replies
Mar 1, 2010
This is in VS 2008. If I right-click in my code-behind page, I get a very useful "View Designer" option, which is great because it saves having to find the .aspx page in the row of document tabs:Problem is, it always opens in Design Mode, not Source Mode, even though in my options, under HTML Designer, I have "Start pages in" set to "Source View" (though I know that usually applies to double-clicking the file in the project explorer):So is there a way of getting the context menu "View Designer" to always open in Source View?Second question: Is there an option/plug-in/hack to change the way VS manages tabs? Specifically, my gripe is it opens2 tabs for the same page (one for aspx and one for aspx.cs), adding to the mess of tabs, which is crazy. Instead of, say, using the buttons at the bottom... is this possible (a mockup):That would be handy. But View Design context menu opening in Source view would be better, if possible.
View 2 Replies
Jul 5, 2010
maybe it's a dumb question, how can i see the designer generated codebehind files (named .designer.aspx.cs) in VS2010?
i need it to wireup form events when i disable autowireup option at @form.
View 3 Replies
Mar 20, 2010
I have some webforms in an Asp.Net V2.0 generated using Visual Studio 2005 using Web site technology
Want to import them in to Visual Studio 2008 set to v3.5 (Asp.Net MVC) - where I use Project technology
I'm using Add > Existing Item - Which brings in Whatever.aspx & Whatever.aspx.cs There is no Whatever.aspx.designer.cs to import
How do you force it to be generated ?
View 2 Replies
May 10, 2010
How do you delete more than one entity at the same time in the designer Entities list. it seems that the designer interface only allows the selection of 1 entity at a time....
View 1 Replies
Feb 15, 2010
I couldn't decide where would be the most apprioate. I looking for an online source control site, if such a thing exists? I've checked out codeplex and thats really for open source projects ? which this isn't. does anyone have a recommendations?
View 4 Replies
May 12, 2010
I have a question regarding the GridView and the Control Designer of it.
I've made a composite control inherited of the GridView. I would like to make some new created BoundField controls available in the designer of the GridView control? So that I can select the custom BoundField control from the Available fields list.
View 1 Replies
Jun 16, 2010
checking if there is anyone ever coverted a string to a real control?example.. if the user types "TextBox", then the serverside will transalate it to a real TextBox control without the need of using if or switch statements.
View 6 Replies
Nov 19, 2010
I cannot figure out how to get my simple container control to properly display in the designer. Here is the basic markup of the custom control:
<div>
<div>Title</div>
<div>
<!-- ASP.Net child controls -->
</div>
</div>
Here is how it looks at runtime (title and then the child control is a GridView):
Here is the simple code for the basic container control:
namespace Shoe.Controls
//[Designer(typeof(ApplicationWindowDesigner))]
//[ParseChildren(false)]
//[PersistChildren(true)]
[ToolboxData("<{0}:ApplicationWindow runat="server"></{0}:ApplicationWindow>")]
public class ApplicationWindow : System.Web.UI.WebControls.Panel
{
#region Designer Properties
[Category("Appearance")]
[DefaultValue("Application")]
[Description("Title that will appear at the top of the Window.")]
[Browsable(true)]
public string Title
get{return (ViewState["ApplicationWindowTitle"] == null)?
string.Empty :
(string)ViewState["ApplicationWindowTitle"];}
set{ViewState["ApplicationWindowTitle"] = value;}
[code...]
As you see the code above, it is currently based off of the Panel control. However, I have also tried just using WebControl as the base class and then providing my own designer as follows:
namespace Shoe.Controls
public class ApplicationWindowDesigner : ContainerControlDesigner
//public class ApplicationWindowDesigner : ControlDesigner
public override void Initialize(IComponent component)
base.Initialize(component);
SetViewFlags(ViewFlags.DesignTimeHtmlRequiresLoadComplete, true);
[code...]
This is also what it looks like when I use WebControl as the base class for the control and use a designer based off of ContainerControlDesigner (child controld, but my title bar and divs are missing).What am I missing? I've found several examples of ContainerControlDesigner but none of them really add anything to the surrounding control like I am.
View 1 Replies
Feb 19, 2011
I have two checkboxes on web form chkYes and chkNo. When I click either I want the other one to be un-ticked. I have implemented the following in code behind;
[Code]....
Problem is ticking one tick has no effect on the other. What is the reason and how can I make it work?
View 3 Replies
Jan 12, 2011
I have deployed a custom SharePoint Web service on Farm A. I am trying to access this Web service from a SharePoint timer job on Farm B. On Farm B, I am creating Class Library project, packaging it (wsp) and then deploying to GAC. The problem is I'm unable to access the Web Service using the following code. TodaysNewSVC is a service reference
TodaysNewSVC.GetTodaysnewsfromInsite objGetNews = new TodaysNewSVC.GetTodaysnewsfromInsite();
objGetNews.PreAuthenticate = true;
objGetNews.Credentials = CredentialCache.DefaultCredentials;
objGetNews.Url = "http://insite-dev.portal/_vti_bin/todaysnews.asmx";
DataTable dt2 = objGetNews.getNewsFromInsite(true, true);
//getNewsFromInsite is a WebMethod which returns the DataTable.
Note: Both farms use the same active directory authentication. I have also done the debugging for Timer Job and feature activation and they are working fine. The problem occurs during the call i.e. getNewsFromInsite
The asmx and wsdl files are accessible from Internet Explorer and also from Windows Console application. Here is the code which I use from console application:
GetTodaysnewsfromInsiteSoapClient objWSClient = new GetTodaysnewsfromInsiteSoapClient();
objWSClient.ClientCredentials.Windows.ClientCredential = System.Net.CredentialCache.DefaultNetworkCredentials;[code]...
Here is the error message:The request failed with the error message:
--
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="%2fPages%2fproblem-with-page.aspx%3fc%3d500">here</a>.</h2>
</body></html>
View 1 Replies
Jan 2, 2011
I created a custom server control. The control works perfectly when added into a project. The issue I have though, is that in the designer - it shows the error --> "Error creating control - MyControl1 Object Reference not set to an instance of an object" The error is because I am using this code to load startup scripts
Dim pg As Page = HttpContext.Current.Handler
if i comment it out then the designer does not throw the object reference error so I know this is where the problem is. So here is my question: How can I get the designer to ignore the HttpContext.Current.Handler object for rendering puroposes?
View 2 Replies
Jan 7, 2010
to add a user control to a web form in Visual Studio 2008, but to not have its declaration added to the designer file?
View 3 Replies
May 7, 2010
This is my first silverlight Application. I am trying to use Rating Control from 3.0 Toolkit with VisualStudio 2008 Here are the problems: I am unable to see designer view after adding Rating Control and few other controls. I am not getting any errors or warnings on markup or while compiling. Trying to access Property window for any control is giving me this message " Property Editing not available". Is this the way silverlight was made available with Visual Studio or is there something I am missing here?
View 1 Replies
Oct 12, 2010
I have an annoying problem when I'm developing in Visual Studio 2010. I am using an UpdatePanel in my .ascx file like this:
<asp:updatepanel id="upStuff" runat="server">....</asp:updatepanel>
in my control.ascx.designer.cs, the update panel is being defined like this:
protected global::System.Web.UI.WebControls.WebParts.updatepanel upSettings;
this produces the error:
"The type or namespace name 'updatepanel' does not exist in the namespace 'System.Web.UI.WebControls.WebParts' (are you missing an assembly reference?)"
The actual namespace should be System.Web.UI.UpdatePanel. When I go directly into the designer.cs file and change it, it works. However, every time I go back into editing control.ascx and save, Visual Studio always changes it back to system.Web.UI.WebControls.Webparts.updatepanel. I'm not sure what is causing this. Is it how I should be referencing namespaces and classes in my project? I'm using .NET 3.5.
View 5 Replies
Apr 29, 2010
I'm working on building a an ASP.NET composite control that is a wrapper for a GridView object. I have been able to figure out how compose the control in order for the markup to appear correctly when added to an ASPX page. Now the issue I'm having is that when I drop an instance of the control on a form from the toolbox, I can't interact with the control using the functionality exposed by a GridView (e.g. columns editor, data source selector, etc.), and I don't see any design-time rendering of the child GridView control. What I would like to do is to basically forward the designer behavior of my composite control down to its child GridView control. I have experimented with implementing a custom designer class that inherits from GridViewDesigner that simply initializes itself using the GridView child of my composite control. However, this doesn't seem to work, as I encounter an "object reference not set to an instance of object" error at design time; I'm wondering if this is even the appropriate strategy to achieve what I'm looking for. how to enable GridView-like design time behavior in composite controls. I have scoured the Web looking for articles on how this is accomplished, but I've surprisingly found virtually no resources on the topic.
View 6 Replies
Mar 2, 2011
getting an error like this:
PostError Creating Control
RadTabStrip1Failed to create designer 'Telerik.Web.UI.RadTabStrip, Telerik.Web.UI, Version=2010.1.415.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4'**
View 2 Replies
Mar 29, 2010
Should bar on the HTML designer show the tag name? It sometimes does!
Here's an image of what I referring to.
I thought for sure it must be a bug but considering that I heard that MS was rewriting the editor (designer too?) I am starting to question whether I know how to use it!
Note the "TD" tooltip on the bottom right. Shouldn't this "TD" appear on the bar on the far right where the mouse would be?
View 1 Replies
Jan 5, 2010
I don't know it happen just to me or Others have the same situation too . All the time when i bind a DataControl to an ObjectDataSource in "Configure Data Source" wizard of ObjectDataSource,when i set parameter source as "Control" in "ControlId" DropdownList there are TWO Item of every control in the WebForm , while it make sense be one.
View 2 Replies
Oct 13, 2010
I have a text box that is intended for an Email address. I am using a Regular eExppression validation control to validate the email address. When I place the following lines of code in a blank web Form, the validator works properly.
<asp:TextBox ID="Email" runat="server" CssClass="DefaultTextBox TextboxWidth" MaxLength="80"></asp:TextBox>
<asp:RegularExpressionValidator ID="valEmail" runat="server" ControlToValidate="Email" ErrorMessage="Invalid Email address" SetFocusOnError="True" ToolTip="Invalid Email address" ValidationExpression="w+([-+.']w+)*@w+([-.]w+)*.w+([-.]w+)*">*</asp:RegularExpressionValidator`>
However, when I use the validation control within a CreateUserWizard control, it does not seem to fire but other validation controls (Required and Custom validators) do fire, but not the regular expression validator above for validating the address. The following is my complete web page. The two controls above appear unchanged in the code below, they are simply embedded into the wizard control mentioned.
<%@ Page Title="" Language="VB" MasterPageFile="~/Master Pages/MasterPage.master" AutoEventWireup="false" CodeFile="Login.aspx.vb" Inherits="Login" %>
<%@ MasterType VirtualPath="~/Master Pages/MasterPage.master" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
<style type="text/css">
.TextboxWidth
{
width: 200px;
}
.Heading
{
font-weight: bold;
font-size: 12pt;
color: rgb(44, 68, 105);
}
.StdFrameWidth...............
View 1 Replies
Jul 9, 2010
When I format an accordion control using a skin file (as opposed to entering the formatting as attributes on each <asp:Accordion> tag), the control renders as expected when the website is run. However, in the VS2010 designer, the control won't display but instead shows the generic "Error Rendering Control" box which hasthe exception, "Collection was modified; enumeration operation may not execute."
View 1 Replies
Jan 22, 2010
I'm trying to develope a collapsible panel control with designer.
I have the following two classes:
[Code]....
and this one:
[Code]....
In fact, the designer class is a copy of a sample class in MSDN and I only tried to customize it to work for me. I'm not sure if all methods are necessary or not.
I have the following two questions:
1- When I use this contrl in design mode, I can add or delete controls to it, in the html view, tags are not updated. so when I close the page and open it again, all changes are lost.
2- I have added this control to the same asp.net project that is using this control. Isn't there any way to have this controil in tool box?
View 5 Replies