Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > How to collaborate with another developer who is only concerned with cosmetics?

Reply
Thread Tools

How to collaborate with another developer who is only concerned with cosmetics?

 
 
Paul E
Guest
Posts: n/a
 
      08-18-2004
I'm interested in knowing if anyone else has the same problems I do,
and how they deal with them.

Our website has 4 database-driven applications.

I use ASP & IIS 6 (localhost) to gather data from SQL200 to display
content, but the look of the site keeps changing. The other developer
uses Dreamweaver, and we are at a development standstill. His use of
..CSS and #Includes crash my development box, so I'm reduced to sending
him code snippets that he cuts and pastes into the .asp pages.

Any feedback and possible solutions are appreciated.

Paul
 
Reply With Quote
 
 
 
 
Jeff Cochran
Guest
Posts: n/a
 
      08-18-2004
On 18 Aug 2004 07:01:17 -0700, (Paul E) wrote:

>I'm interested in knowing if anyone else has the same problems I do,
>and how they deal with them.
>
>Our website has 4 database-driven applications.
>
>I use ASP & IIS 6 (localhost) to gather data from SQL200 to display
>content, but the look of the site keeps changing. The other developer
>uses Dreamweaver, and we are at a development standstill. His use of
>.CSS and #Includes crash my development box, so I'm reduced to sending
>him code snippets that he cuts and pastes into the .asp pages.
>
>Any feedback and possible solutions are appreciated.


There's no ASP solution, or even a technical one, to a personal
problem. Either you work together, or you don't, but whatever you
decide it can't be solved by the simple application of ASP.

Jeff
 
Reply With Quote
 
 
 
 
Ray at
Guest
Posts: n/a
 
      08-18-2004
Well, for one thing, if that person is simply concerned with appearances and
uses Dreamweaver, I wouldn't call him a developer. ;]

I have this same problem where I work. The best thing that I've come up
with so far is to put all my asp code outside of the page designed by our
designer. So, she gives me this:

file.asp:
<html>
<head>
....
<script language="JavaScript">
function MM_someNonsense {}
function MM_moreNonsense {}
function MM_IhateWYSIWYG {}
function MM_UseTextpad {}
function MM_OrAtLeastNotepad {}
</script>
<body>
Prime rate is PUT PRIME RATE HERE, RAY.
</body>
</html>



I return this to her:
file.asp:
<% Call PageLoad() %>
<!-- #include file="DoNotOpenInDreamweaver.asp" -->
<html>
<head>
....
<script language="JavaScript">
function MM_someNonsense {}
function MM_moreNonsense {}
function MM_IhateWYSIWYG {}
function MM_UseTextpad {}
function MM_OrAtLeastNotepad {}
</script>
<body>
Prime rate is <%=sPrime%>
</body>
</html>



DoNotOpenInDreamweaver.asp:
<%
Dim sPrime
Sub PageLoad()
'''code, code code
sPrime = someResultOfSomeCoding '4.50% today!
End Sub
%>




If she ever goes and opens file.asp in Dreamweaver again, she should be able
to redesign as she likes. Basically, all I'm trying to do is keep my code
out of her files. This isn't working out too badly. There is no real
solution though. Just make fun of the person using Dreamweaver until he is
really embarrassed. Then buy him a Textpad license.

Ray at work





"Paul E" <> wrote in message
news: om...
> I'm interested in knowing if anyone else has the same problems I do,
> and how they deal with them.
>
> Our website has 4 database-driven applications.
>
> I use ASP & IIS 6 (localhost) to gather data from SQL200 to display
> content, but the look of the site keeps changing. The other developer
> uses Dreamweaver, and we are at a development standstill. His use of
> .CSS and #Includes crash my development box, so I'm reduced to sending
> him code snippets that he cuts and pastes into the .asp pages.
>
> Any feedback and possible solutions are appreciated.
>
> Paul



 
Reply With Quote
 
Roland Hall
Guest
Posts: n/a
 
      08-19-2004
"Paul E" wrote in message
news: om...
: I'm interested in knowing if anyone else has the same problems I do,
: and how they deal with them.
:
: Our website has 4 database-driven applications.
:
: I use ASP & IIS 6 (localhost) to gather data from SQL200 to display
: content, but the look of the site keeps changing. The other developer
: uses Dreamweaver, and we are at a development standstill. His use of
: .CSS and #Includes crash my development box, so I'm reduced to sending
: him code snippets that he cuts and pastes into the .asp pages.
:
: Any feedback and possible solutions are appreciated.

Smith & Wesson

Enough said.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Technet Script Center - http://www.microsoft.com/technet/scriptcenter/
WSH 5.6 Documentation - http://msdn.microsoft.com/downloads/list/webdev.asp
MSDN Library - http://msdn.microsoft.com/library/default.asp


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
I'm searching for a python/pygame project to collaborate alcueca@inf.upv.es Python 1 03-12-2005 01:12 AM
Happy but concerned SP2 Headtheball Wireless Networking 1 09-12-2004 07:19 PM
SHOULD ONE BE CONCERNED tbm Digital Photography 14 05-05-2004 08:12 PM
collaborate on open source project Humpty Dumpty Python 0 01-26-2004 03:39 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57