888 Posted Topics

Member Avatar for Secret Agent

In your above code snippet, you're building a string called "winprops" that is used in the window.open() command. That string is built from hard-coded strings and variables that are passed into the function. When you call the NewWindow() function, you pass in the values: [code]NewWindow("www.tgreer.com","500","400","no")[/code] would create a new window, …

Member Avatar for Secret Agent
0
213
Member Avatar for bengoheen

The <% %> brackets indicate ASP. Your host must support ASP processing for this code to run.

Member Avatar for tgreer
0
148
Member Avatar for nivedita

To my knowledge, you can't use JavaScript for this. JavaScript has a limited set of core operators, statements, and objects. In this case, I would think the Document object would be the relevant one. I don't see any method or property of the browser DOM that returns header information (besides …

Member Avatar for tgreer
0
260
Member Avatar for ! !
Member Avatar for Paradox25

[url]http://webreference.com/programming/javascript/professional/chap21/2/5.html[/url] If you view the source on that frame, you'll find the code and the above reference.

Member Avatar for tgreer
0
65
Member Avatar for hollystyles
Member Avatar for tgreer
0
329
Member Avatar for koa1aboi

Sorry. Welcome to the world of the browser. The user is God of this world. Meaning, that you can't script an automated print. That would be "hijacking" control away from the user. The JavaScript "print" method sends a request to the browser. The browser responds by opening the Print Dialog …

Member Avatar for koa1aboi
0
242
Member Avatar for Lae135

I don't quite understand the question. What is "FP03"? Let me take a guess? You want users to search the MLS database from your site, but don't want them to "navigate away from" your site? Easiest approach, make the MLS link open in a new window. That way, when they …

Member Avatar for Comatose
0
116
Member Avatar for Comatose

No. This is because the contents of a textarea will "flow" based upon screen resolution, browser-window size, etc. Perhaps I'm misunderstanding the situation, if so, please clarify.

Member Avatar for tgreer
0
2K
Member Avatar for Ann Drew

The DOCTYPE declaration informs the browser which particular "code flavor" your page uses. You can read about DOCTYPE's here: [url]http://htmlhelp.com/tools/validator/doctype.html[/url] If you don't specify a DOCTYPE, the the browser will use it's defaults. In some cases, with IE for example, this means that you can get away with code that …

Member Avatar for tgreer
0
244
Member Avatar for winnie

Where is your "function library"? How are you loading the functions onto your page? Is "stringLibrary" an external JavaScript file?

Member Avatar for tgreer
0
63
Member Avatar for belama

You just set the style to whatever property you would like, for example "border=0".

Member Avatar for belama
0
199
Member Avatar for autocrat

Ditto: post a hyperlink. Also, make sure you're using a DocType so that the browser(s) know what they are and are not allowed to do with percentages, padding, margins, and so on.

Member Avatar for autocrat
0
143
Member Avatar for LowelG
Member Avatar for eagleeye
0
205
Member Avatar for gazaaq

You have a CSS setting, the "form" selector, with a margin property set to 100%. That could very well be the problem. Try changing that. I would strongly recommend selecting and adding a proper DocType, and then validating both your CSS and your HTML.

Member Avatar for cwager
0
161
Member Avatar for kernel

I've seen this a couple of times before. Once I was able to fix the problem by removing "width=100%" from a lot of the tables and td tags the user had. The other time, this didn't fix the problem.

Member Avatar for kernel
0
199
Member Avatar for Dani

[IMG]http://www.daniweb.com/certificates/badge24531.jpg[/IMG] Badges? We don't need no stinkin' badges!

Member Avatar for Catweazle
0
395
Member Avatar for tgreer

I've been hacking away at WordPress to get the style the way I want. My main task has been to convert their vertical menu tower into horizontal dropdown. It's working fine except for one problem. The blog software creates a calendar as a table. The table, the entire menu in …

0
123
Member Avatar for faisyshah

ASP uses script tags interspersed with HTML. The server processes/parses those tags to provide programmatic functions, such as outputting strings, interacting with a database, etc. ASP.NET is completely different. It has a collection of "server controls" that you control using standard OOP patterns. They have properties, events and methods. The …

Member Avatar for Javaknight
0
113
Member Avatar for moderate_rock48

I host my sites with a hosting company that is getting ready to offer a "basic blogger" hosting option. It should be less than $5.00/month, with everything you need to run a blog site. If anyone is interested, email me offline and I'll get you the details.

Member Avatar for alc6379
0
211
Member Avatar for buddyb
Member Avatar for DaveSW
0
393
Member Avatar for cancer10

I got all six, but I'm pretty sure I've seen it before, so who knows what that means. For an exercise in what the brain CAN process: I cdnuolt blveiee taht I cluod aulaclty uesdnatnrd waht I was rdgnieg. The phaonmneal pweor of the hmuan mnid! Aoccdrnig to rscheearch at …

Member Avatar for 1o0oBhP
0
119
Member Avatar for buddyb

If you use solid gifs, the format is quite simple. The colors are simple hex-pairs, and so can be manipulated on the fly. One site I worked on years ago, we altered and served the gifs on the fly to make a rounded corner match the user's color scheme. I …

Member Avatar for DaveSW
0
274
Member Avatar for electronym

They don't have any. Those applications are not part of the .NET framework, and so do not have assigned namespaces. A namespace is a collection of classes, which are prototypes for objects, which have properties and methods. You won't find the "Excel" application in that hierarchy. If you want to …

Member Avatar for tgreer
0
154
Member Avatar for bushman91

Use <div> tags and CSS Positioning. All of your background images would be contained in one <div>, and your "content" would be in another. With CSS, you can make elements overlap each other. I have an article about CSS Positioning on my website, on the "Articles Page".

Member Avatar for mikeSQL
0
243
Member Avatar for lostinoz

Just noticed your handle. You're not in Kansas, by chance?

Member Avatar for lostinoz
0
98
Member Avatar for tgreer

There are always closet poets in every Geek community. I'm an established amatuer poet, with a long list of published work, including school textbooks, and want to make a REALLY GOOD poetry workshop forum, focused on what I write, Westernized Asian forms. I want real poetry, and members wanting to …

Member Avatar for moderate_rock48
0
54
Member Avatar for LAMJAM
Member Avatar for tgreer
0
290
Member Avatar for CodeZombie
Member Avatar for Bilyboy
Member Avatar for daniel75

What would trigger the action? Yes, you can add new rows. What are you binding to the DataGrid? I like to use a DataReader, as they are very high performance. I loop through the DataReader to create an ArrayList. Then I bind the ArrayList to the DataGrid. In server-side code, …

Member Avatar for tgreer
0
390
Member Avatar for jdmml

Is the frameset one of your pages? In other words you have a layout like: [code] MAIN FRAMESET -------- -------- | | f1 | link ---------> |------| | | f2 | -------- -------- [/code] And you want f2 to be different based on a value you attach to the link/querystring? …

Member Avatar for tgreer
0
225
Member Avatar for mayb

Look at an application I helped to write. It uses a DHTML web front-end, and PostScript back-end for print production. The site allows customers to build their own business cards. I could see you doing some of the same techniques for web layout generation. The site is Swiss: [url]http://www.monopoly.ch[/url]

Member Avatar for tgreer
0
351
Member Avatar for ep2002

The only way I have known to work (12 years in the graphic arts industry) is to use true vector art, rather than bitmap. Instead of working in PhotoShop, for example, work in Illustrator.

Member Avatar for tgreer
0
126
Member Avatar for bladerbole
Member Avatar for tgreer
0
50
Member Avatar for OurNation

Start what? Make WHAT find a number? Find a number where? In what context?

Member Avatar for tgreer
0
61
Member Avatar for Deepa

I would use a Regular Expression: [code] function isURL(x) { return REFindNoCase("^(((https?:|ftp:|gopher:)\/\/))[-[:alnum:]\?%,\.\/&##!@:=\+~_]+[A-Za-z0-9\/]$",x) NEQ 0; } [/code]

Member Avatar for tgreer
0
86
Member Avatar for sunny124

Can you please provide more detail. I'll make some assumptions since you're posting in the ASP.NET forum. 1st assumption: you already have your security figured out. Perhaps you're using Forms Authentication? 2nd assumption: the login link is an ASP.NET LinkButton or Button server control. If both of those are correct, …

Member Avatar for tgreer
0
95

The End.