473,398 Members | 2,380 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,398 software developers and data experts.

Building ASP.NET sites without Visual Studio?

Roy
Is it even possible? I mean, realistically possible?

I've found info on how to get .aspx and .vb pages to talk to each other
without using VS, but I can't find a single way to get a .ascx user
control page to talk to other pages. Anyone have any info or links on
this matter? PLEASE chime in with your thoughts.

Thanks!

Nov 19 '05 #1
7 1080
It's very possible - I've built functional sites with only a text editor,
but you may find it better to try the free, community supported WebMatrix
development tool from www.asp.net

--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no rights.

"Roy" <ro**********@gmail.com> wrote in message
news:11*********************@z14g2000cwz.googlegro ups.com...
Is it even possible? I mean, realistically possible?

I've found info on how to get .aspx and .vb pages to talk to each other
without using VS, but I can't find a single way to get a .ascx user
control page to talk to other pages. Anyone have any info or links on
this matter? PLEASE chime in with your thoughts.

Thanks!

Nov 19 '05 #2
hmm....

sorry about the lack of formatting there. let me try again

String MD5String(String strToEncode) {
ASCIIEncoding objEncode = new ASCIIEncoding();
byte[] btToEncode = objEncode.GetBytes(strToEncode);
MD5 objMD5 = new MD5CryptoServiceProvider();
byte[] btHashed = objMD5.ComputeHash(btToEncode);
return BitConverter.ToString(btHashed);
}
--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no rights.
"Jason Brown [MSFT]" <i-******@online.microsoft.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
It's very possible - I've built functional sites with only a text editor,
but you may find it better to try the free, community supported WebMatrix
development tool from www.asp.net

--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no
rights.

"Roy" <ro**********@gmail.com> wrote in message
news:11*********************@z14g2000cwz.googlegro ups.com...
Is it even possible? I mean, realistically possible?

I've found info on how to get .aspx and .vb pages to talk to each other
without using VS, but I can't find a single way to get a .ascx user
control page to talk to other pages. Anyone have any info or links on
this matter? PLEASE chime in with your thoughts.

Thanks!


Nov 19 '05 #3
Now I'm replying to the wrong thread. my apolgies all. one of those days ;-)
"Jason Brown [MSFT]" <i-******@online.microsoft.com> wrote in message
news:Os**************@TK2MSFTNGP15.phx.gbl...
hmm....

sorry about the lack of formatting there. let me try again

String MD5String(String strToEncode) {
ASCIIEncoding objEncode = new ASCIIEncoding();
byte[] btToEncode = objEncode.GetBytes(strToEncode);
MD5 objMD5 = new MD5CryptoServiceProvider();
byte[] btHashed = objMD5.ComputeHash(btToEncode);
return BitConverter.ToString(btHashed);
}
--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no
rights.
"Jason Brown [MSFT]" <i-******@online.microsoft.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
It's very possible - I've built functional sites with only a text editor,
but you may find it better to try the free, community supported WebMatrix
development tool from www.asp.net

--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no
rights.

"Roy" <ro**********@gmail.com> wrote in message
news:11*********************@z14g2000cwz.googlegro ups.com...
Is it even possible? I mean, realistically possible?

I've found info on how to get .aspx and .vb pages to talk to each other
without using VS, but I can't find a single way to get a .ascx user
control page to talk to other pages. Anyone have any info or links on
this matter? PLEASE chime in with your thoughts.

Thanks!



Nov 19 '05 #4
Roy
I've tried using WebMatrix, but it doesn't solve my problem. My main
issue is that I cannot get a user control (or it's corresponding
..ascx.vb page to talk to other .aspx pages... Make sense?

I'm using the user control as a component of another .aspx page (or at
least trying), but I can't find any syntax online on how to reference
all the varying pages in my web app without using VS.

I did find a brief blurb mentioning how one could get a .aspx and
..aspx.vb page to talk to each other, but the same code does not work
for .ascx pages...

Nov 19 '05 #5
Um, no, I don't quite see what you mean - user control talking to _other_
pages? as in, not the parent page that it's embedded in?

perhaps you should clarify. maybe I'm just missing one key point.
--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no
rights.

"Roy" <ro**********@gmail.com> wrote in message
news:11**********************@c13g2000cwb.googlegr oups.com...
I've tried using WebMatrix, but it doesn't solve my problem. My main
issue is that I cannot get a user control (or it's corresponding
.ascx.vb page to talk to other .aspx pages... Make sense?

I'm using the user control as a component of another .aspx page (or at
least trying), but I can't find any syntax online on how to reference
all the varying pages in my web app without using VS.

I did find a brief blurb mentioning how one could get a .aspx and
.aspx.vb page to talk to each other, but the same code does not work
for .ascx pages...

Nov 19 '05 #6
Roy
It was simple. I figured it out. :) Like so:

<%@ Page Language="vb" Inherits="Tier2Grid" Src="tier2.aspx.vb"
Debug="true" %>
<%@ Register TagPrefix="UC_Grid" TagName="Nested" Src="newtier2.ascx"
%>

Without using VS, one must use the "inherits" and "src" tags to
reference pages in notepad. The user control Register reference is
independent from the .vb page references. I'm prolly not making sense,
but if you ever have to code your .NET projects using only notepad,
you'll understand my frustrated gibberish.

Nov 19 '05 #7
OK, now I think I'm following you. good to see you've got it sorted.
--
Jason Brown
Microsoft GTSC, IIS

This posting is provided "AS IS" with no warranties, and confers no
rights.
"Roy" <ro**********@gmail.com> wrote in message
news:11*********************@c13g2000cwb.googlegro ups.com...
It was simple. I figured it out. :) Like so:

<%@ Page Language="vb" Inherits="Tier2Grid" Src="tier2.aspx.vb"
Debug="true" %>
<%@ Register TagPrefix="UC_Grid" TagName="Nested" Src="newtier2.ascx"
%>

Without using VS, one must use the "inherits" and "src" tags to
reference pages in notepad. The user control Register reference is
independent from the .vb page references. I'm prolly not making sense,
but if you ever have to code your .NET projects using only notepad,
you'll understand my frustrated gibberish.

Nov 19 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Marcus | last post by:
I have seen many posts of people with the same problem as me (attached below), but I have yet to see any solutions posted. Has anyone figured out how to deploy an Asp.net web site to the webserver...
54
by: m.roello | last post by:
In the book: "Working with Microsoft Visual Studio 2005" Craig Skibo wrote: "The power of Visual Studio 2005 lies in its ability to empower users to build, test, and debug powerful applications...
0
by: Herman Jones | last post by:
I'm getting the following error when I build a Class Library project: Embedding manifest... Project : error PRJ0002 : Error result 1 returned from 'C:\WINDOWS\system32\cmd.exe'. It happens with...
13
by: treble54 | last post by:
I need to build PHP from source with the pdo_ibm extension and I am having an issue with it. Firstly, I am using Visual Studio .NET 2003 and I am building PHP from source through the Visual Studio...
2
by: fabian.conrad | last post by:
Hi,. I am trying to build a multithreaded dll file, as I am new to that sort of things I've followed a tutorial step by step but still can't get things to work. I am using Visual C++ 2005 Express...
4
by: vedrandekovic | last post by:
Hi, I have already install Microsoft visual studio .NET 2003 and MinGw, when I try to build a extension: python my_extension_setup.py build ( or install ) , I get an error: LINK : fatal...
12
by: Ludwig | last post by:
Hi all, we are building our own class library framework, with stuff in it that can be used in various projects at various clients. Initially we had 4 assemblies with everything in it. Of...
16
by: Lars Uffmann | last post by:
Does anyone have a good suggestion? I am currently using Eclipse Europa with the C-Development Toolkit (plus gnu-toolchain under cygwin) and the Widestudio Native Application Builder plugin. ...
7
Curtis Rutland
by: Curtis Rutland | last post by:
Building A Silverlight (2.0) Multi-File Uploader All source code is C#. VB.NET source is coming soon. Note: This project requires Visual Studio 2008 SP1 or Visual Web Developer 2008 SP1 and...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.