Click here to Skip to main content
15,888,984 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to referenc functions in other code file Pin
Heath Stewart17-Feb-04 2:58
protectorHeath Stewart17-Feb-04 2:58 
Generalcreating an app to track user input Pin
kym34516-Feb-04 8:06
kym34516-Feb-04 8:06 
GeneralRe: creating an app to track user input Pin
CWIZO16-Feb-04 8:17
CWIZO16-Feb-04 8:17 
GeneralRe: creating an app to track user input Pin
apferreira16-Feb-04 13:18
apferreira16-Feb-04 13:18 
GeneralSMTP Help Pin
mina_aziz16-Feb-04 7:00
mina_aziz16-Feb-04 7:00 
GeneralRe: SMTP Help Pin
Heath Stewart16-Feb-04 9:31
protectorHeath Stewart16-Feb-04 9:31 
GeneralASP.NET and slider controls Pin
julian_l16-Feb-04 6:54
julian_l16-Feb-04 6:54 
GeneralRe: ASP.NET and slider controls Pin
Heath Stewart16-Feb-04 9:22
protectorHeath Stewart16-Feb-04 9:22 
Flying Iguana wrote:
I'm new to web-based programming.

No kidding! Roll eyes | :rolleyes:

You can't "owner-draw" in HTML. Web pages are constructed of HTML, images, scripts (like JS), and such. If you need runtime drawing of graphics, you either generate them on the server or use ActiveX (requires Windows and a complicated setup with Wine on linux or BSD and Konquerer, and even then it may still not work), Java (requires a JRE on the system and Java to be enabled, plus it's sandboxed), or .NET smart clients (requires .NET on Winodws, Internet Explorer, and is sandboxed as well).

HTTP - the protocol of the web - is also stateless and essentially one way. The client makes a request and the server returns a response. Period. If you need graphics (like charts and what-not), these must be rendered on the server directly to the response stream using the URL requested, or saved as a file with the path included in HTML.

If you need sliders, you're going to have to use Javascript (or any script, though others aren't supported on various platforms like VBScript). ASP.NET describes server-side controls and processing, which javascript only to support a few features (like client-side validation for IE).

New to Javascript, then read. You can find information about JScript - Microsoft's version of Javascript which is mostly compatible (as a language) - at http://msdn.microsoft.com/library/en-us/script56/html/js56jsoriJScript.asp[^]. Understand that most of what you do when scripting Dynamic HTML (DHTML) pages is that the script language manipulates the Document Object Model (DOM). You can read about that for IE (because each browser supports a subset of the standards while adding their own proprietrary extensions) at http://msdn.microsoft.com/workshop/author/dhtml/dhtml_node_entry.asp[^].

If you want more information this, try the ASP.NET or Web Development forums. This is the C# forum.

 

Microsoft MVP, Visual C#
My Articles
GeneralPrintDocument1.PrinterSettings.CanDuplex Pin
amadeonMk16-Feb-04 5:13
amadeonMk16-Feb-04 5:13 
GeneralRe: PrintDocument1.PrinterSettings.CanDuplex Pin
Heath Stewart16-Feb-04 6:54
protectorHeath Stewart16-Feb-04 6:54 
GeneralRe: PrintDocument1.PrinterSettings.CanDuplex Pin
amadeonMk16-Feb-04 21:10
amadeonMk16-Feb-04 21:10 
GeneralRe: PrintDocument1.PrinterSettings.CanDuplex Pin
Heath Stewart17-Feb-04 2:54
protectorHeath Stewart17-Feb-04 2:54 
GeneralText smoothing in a single application Pin
jremignanti16-Feb-04 4:19
jremignanti16-Feb-04 4:19 
GeneralRe: Text smoothing in a single application Pin
Heath Stewart16-Feb-04 6:43
protectorHeath Stewart16-Feb-04 6:43 
GeneralRe: Text smoothing in a single application Pin
jremignanti16-Feb-04 7:19
jremignanti16-Feb-04 7:19 
GeneralRe: Text smoothing in a single application Pin
Heath Stewart16-Feb-04 8:52
protectorHeath Stewart16-Feb-04 8:52 
GeneralUsing breakpoints with DirectDraw 9.0 Pin
Jean Bédard16-Feb-04 3:57
Jean Bédard16-Feb-04 3:57 
GeneralRe: Using breakpoints with DirectDraw 9.0 Pin
Mazdak16-Feb-04 4:27
Mazdak16-Feb-04 4:27 
GeneralRe: Using breakpoints with DirectDraw 9.0 Pin
Heath Stewart16-Feb-04 6:32
protectorHeath Stewart16-Feb-04 6:32 
GeneralRe: Using breakpoints with DirectDraw 9.0 Pin
leppie16-Feb-04 6:41
leppie16-Feb-04 6:41 
GeneralLoading a DLL Dynamically Pin
draco_iii16-Feb-04 3:37
draco_iii16-Feb-04 3:37 
GeneralRe: Loading a DLL Dynamically Pin
partyganger16-Feb-04 3:41
partyganger16-Feb-04 3:41 
GeneralSingle quotes in query Pin
Reinier van de Wetering16-Feb-04 1:33
Reinier van de Wetering16-Feb-04 1:33 
GeneralRe: Single quotes in query Pin
Mazdak16-Feb-04 3:01
Mazdak16-Feb-04 3:01 
GeneralRe: Single quotes in query Pin
Verdant12316-Feb-04 11:16
Verdant12316-Feb-04 11:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.