Search Results

Showing results 1 to 40 of 217
Search took 0.03 seconds.
Search: Posts Made By: tgreer ; Forum: ASP.NET and child forums
Forum: ASP.NET Nov 9th, 2006
Replies: 4
Views: 14,040
Posted By tgreer
You seem to be asking about three or four different questions... all in an old thread. Please decide which question you'd like to ask, and then do so in a new thread. Are you asking:

1) How do I...
Forum: ASP.NET Nov 9th, 2006
Replies: 5
Views: 2,086
Posted By tgreer
Again, it's a question of mapping image pixels to device (in this case, screen) pixels. If you angle the image, you lose the 1:1 mapping. The device has to "fake" it or add/remove extra pixels to...
Forum: ASP.NET Nov 8th, 2006
Replies: 5
Views: 2,086
Posted By tgreer
The short answer is "no", most likely. It isn't very intuitive, but the reason why images appear "bad" on screen is likely because they are actually high-quality, high-resolution images. A typical...
Forum: ASP.NET Nov 8th, 2006
Replies: 1
Views: 4,365
Posted By tgreer
http://www.jdstiles.com/java/angledtext2.html
Forum: ASP.NET Nov 2nd, 2006
Replies: 1
Views: 5,069
Posted By tgreer
ASP.NET is not a mail server. Your users are sending email to a mail server, not to an ASP.NET application. If you want to send an email programmatically when a user fills out a form or clicks a link...
Forum: ASP.NET Oct 31st, 2006
Replies: 3
Views: 1,515
Posted By tgreer
JavaScript is always enabled by default.
Forum: ASP.NET Oct 30th, 2006
Replies: 2
Views: 1,312
Posted By tgreer
What you are describing is called a "ComboBox" and it doesn't exist in HTML.
Forum: ASP.NET Oct 28th, 2006
Replies: 3
Views: 1,515
Posted By tgreer
Please be more specific. There is no such thing as a "messagebox" in HTML. There are "alerts" and "confirms". Which server control are you using?
Forum: ASP.NET Oct 27th, 2006
Replies: 1
Views: 2,659
Posted By tgreer
1. Bookmarking is part of the User Model for websites, not the Code Model. In simple English, that means if a user wants to bookmark a page, they'll do it with the built-in browser commands,...
Forum: ASP.NET Oct 27th, 2006
Replies: 1
Views: 1,194
Posted By tgreer
Do you mean JScript, or JavaScript? What does "cod" mean? You are posting in the ASP.NET forum, so I'm curious at one point you want to perform a "search". Within the client? Each browser has a...
Forum: ASP.NET Oct 26th, 2006
Replies: 3
Views: 2,327
Posted By tgreer
I believe you are confusing JavaScript with Java.
Forum: ASP.NET Oct 24th, 2006
Replies: 3
Views: 2,327
Posted By tgreer
In JavaScript? You can't. If you want to create a dynamic image in ASP.NET, look into the System.Drawing and System.Drawing.Imaging namespaces.
Forum: ASP.NET Oct 23rd, 2006
Replies: 3
Views: 2,566
Posted By tgreer
The forum software uses code tags for posting code. They are clearly explained in the message editor when you post a message. Just follow the instructions. Also, we use full complete standard English...
Forum: ASP.NET Oct 21st, 2006
Replies: 1
Views: 2,260
Posted By tgreer
Do a web search for "ASP.NET login page" and follow the directions from any of the thousands of pages on the topic.
Forum: ASP.NET Oct 20th, 2006
Replies: 1
Views: 1,522
Posted By tgreer
The best way to design an ASP.NET application is to create the database with the proper constraints and stored procedures, then to drag various web controls onto the page and configure their design...
Forum: ASP.NET Oct 4th, 2006
Replies: 6
Views: 2,811
Posted By tgreer
You'd be missing out on nothing. PHP or ASP.NET, both simply generate HTML and/or JavaScript and CSS. The end result is the same. Both have server-side access to databases.

ASP.NET is more...
Forum: ASP.NET Oct 4th, 2006
Replies: 6
Views: 2,811
Posted By tgreer
More is not always better. The choice for outsourced development, however, usually comes down to long-term maintainability. I find ASP.NET to be extremely burdensome from a support and maintenance...
Forum: ASP.NET Oct 3rd, 2006
Replies: 3
Views: 3,138
Posted By tgreer
I have no control over the asp.net website. In any case, you really need to update to .NET Framework 2.0. I understand that may not be under your control.

I have to apologize. I said "Graphics",...
Forum: ASP.NET Sep 28th, 2006
Replies: 3
Views: 2,479
Posted By tgreer
I too, am confused by this thread. Is the original poster asking a question? If so, please spell it out.
Forum: ASP.NET Sep 27th, 2006
Replies: 5
Views: 4,643
Posted By tgreer
I don't understand your question. A Flash object is a Flash object. It requires the Flash plugin to play. To integrate it into your page, you need to use either the embed or object tag, depending on...
Forum: ASP.NET Sep 26th, 2006
Replies: 3
Views: 3,138
Posted By tgreer
Excel is not a server application. Asking it to be a "chart server" for your web application is not going to lead to a scalable application. I would suggest either:

1) creating your own charts...
Forum: ASP.NET Sep 26th, 2006
Replies: 2
Views: 1,528
Posted By tgreer
The File Control presents a standard "File Open" dialog. You have no control over the user's OS. They can certainly navigate their own directory structure.
Forum: ASP.NET Sep 25th, 2006
Replies: 7
Views: 10,888
Posted By tgreer
That is really only suitable for an intranet application, and an IE-only browser environment.
Forum: ASP.NET Sep 24th, 2006
Replies: 5
Views: 4,643
Posted By tgreer
ASP.NET produces HTML. So, the standard HTML techniques will work just fine.
Forum: ASP.NET Sep 22nd, 2006
Replies: 5
Views: 7,098
Posted By tgreer
Try String.Replace(Environment.NewLine, "<br>")
Forum: ASP.NET Sep 20th, 2006
Replies: 3
Views: 9,285
Posted By tgreer
http://www.devcity.net/Articles/64/1/screenresolution.aspx
Forum: ASP.NET Sep 20th, 2006
Replies: 1
Views: 3,170
Posted By tgreer
Look at the "gzip" stuff, in the System.IO.Compression namespace. I think you'll find that a 3rd party zip library is the way to go. I think the one I ended up using was SharpLibZip.
Forum: ASP.NET Sep 19th, 2006
Replies: 1
Views: 27,711
Posted By tgreer
A web application of course wouldn't have any of the standard OS controls. It's a web application, not a fat client application. The only reason to ever present the user with a "File" dialog box is...
Forum: ASP.NET Sep 19th, 2006
Replies: 3
Views: 9,285
Posted By tgreer
You don't. Or, rather, you shouldn't worry about this it all. Pick a standard resolution, such as 800x600, and code for it. Trying to code for all possible screen resolutions and browser window sizes...
Forum: ASP.NET Sep 5th, 2006
Replies: 2
Views: 1,333
Posted By tgreer
No, the problem isn't really clear. In order to get the most benefit from a site like this, you need to ask very specific questions. No one can really take on a complete project, from start to...
Forum: ASP.NET Aug 23rd, 2006
Replies: 16
Views: 10,023
Posted By tgreer
That is not a correct answer. ViewState doesn't have anything to do with the value of HTML form objects and their corresponding server controls, only with the state of certain server controls that do...
Forum: ASP.NET Aug 17th, 2006
Replies: 3
Views: 6,098
Posted By tgreer
Please use the code tags when posting code. Thank you.
Forum: ASP.NET Aug 1st, 2006
Replies: 15
Views: 69,151
Posted By tgreer
There is no way to disable the back button reliably. Every method, short of writing your own browser, can be easily disabled. This question has been asked millions of times, for years and years. The...
Forum: ASP.NET Jul 20th, 2006
Replies: 1
Views: 2,170
Posted By tgreer
I always wonder what sort of responses the posters of such questions are expecting to see.

PayPal is a very elaborate set of services, developed by a team of extremely experienced developers over...
Forum: ASP.NET Jul 20th, 2006
Replies: 1
Views: 1,624
Posted By tgreer
You need to put [Serializable] above the procedure signature. Why? Depends on what you're writing and how/why.
Forum: ASP.NET Jul 20th, 2006
Replies: 12
Views: 15,029
Posted By tgreer
I wrote this article to answer issues with dynamic server controls:
ASP.NET Conditional Dynamic Controls (http://www.tgreer.com/aspnet_html_04.html). It should answer your questions.
Forum: ASP.NET Jun 28th, 2006
Replies: 9
Views: 10,472
Posted By tgreer
Instead of all that color formatting, please just use the site's "CODE" tags.

It appears you're designing a form that allows a user to dynamically build a SQL query? I'm sorry, that's a really bad...
Forum: ASP.NET Jun 28th, 2006
Replies: 1
Views: 3,958
Posted By tgreer
Remember the web is client-server, and ASP.NET doesn't change that.

File uploads are done via the <input type="file" /> HTML element.

That takes a file, plain and simple. So if the user wants...
Forum: ASP.NET Jun 27th, 2006
Replies: 9
Views: 10,472
Posted By tgreer
Make sure you're using all the relative SQL namespaces.
Forum: ASP.NET Jun 27th, 2006
Replies: 9
Views: 10,472
Posted By tgreer
You haven't done a read, and you instantiate your reader incorrectly. You don't need a DataAdapter if you're using a Reader.


conn.Open();
SqlCommand command = new SqlCommand(sqlString,conn);...
Showing results 1 to 40 of 217

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC