Forum: ASP.NET Jun 15th, 2009 |
| Replies: 5 Views: 644 There is no way that any modern browser has javascript functions allowing access to COM ports. |
Forum: ASP.NET Jun 12th, 2009 |
| Replies: 5 Views: 644 There is no way to do that. ASP.NET is a server side language. |
Forum: ASP.NET Jun 8th, 2009 |
| Replies: 4 Views: 494 Use the DateTime object. You can check out the DateTime object's members here: http://msdn.microsoft.com/en-us/library/system.datetime_members.aspx |
Forum: ASP.NET Jun 8th, 2009 |
| Replies: 2 Views: 882 It looks like Red Hat has only included it in Fedora and not in Red Hat Enterprise Linux. http://news.cnet.com/8301-10784_3-6025387-7.html |
Forum: ASP.NET Jun 7th, 2009 |
| Replies: 15 Views: 3,352 You should post what you've come up with. You never know, it might help other DaniWeb users out! |
Forum: ASP.NET Jun 6th, 2009 |
| Replies: 2 Views: 556 http://www.c-sharpcorner.com/UploadFile/mgold/DotNetBlog12022005013909AM/DotNetBlog.aspx |
Forum: ASP.NET Jun 5th, 2009 |
| Replies: 4 Views: 1,059 @ithelp: that is exactly what I was thinking :) |
Forum: ASP.NET Jun 5th, 2009 |
| Replies: 4 Views: 1,059 You can put the date of birth in a DateTime, and then use the dates in this wikipedia article, http://en.wikipedia.org/wiki/Zodiac_sign#The_twelve_signs, to calculate what zodiac sign the date falls... |
Forum: ASP.NET Jun 5th, 2009 |
| Replies: 1 Views: 412 Here is an article on URL Rewriting in ASP.NET 1.1: http://msdn.microsoft.com/en-us/library/ms972974.aspx |
Forum: ASP.NET Jun 4th, 2009 |
| Replies: 6 Views: 613 Get rid of runat="server" in that script tag. That isn't server side script; it's javascript which runs on the client. |
Forum: ASP.NET Jun 4th, 2009 |
| Replies: 6 Views: 613 Which line is doing that? Can you put it in bold or something? I'm not sure if your counting the whitespace as a line number. |
Forum: ASP.NET Jun 2nd, 2009 |
| Replies: 15 Views: 3,352 |
Forum: ASP.NET Jun 1st, 2009 |
| Replies: 3 Views: 698 |
Forum: ASP.NET Jun 1st, 2009 |
| Replies: 1 Views: 1,001 The reason why your are experiencing this error is because all of the controls are not a part of the form, they are part of the EditItemTemplate in the FormView control. This means that they are not... |
Forum: ASP.NET Jun 1st, 2009 |
| Replies: 1 Views: 280 What help do you need? Have you tried doing it yourself? What errors are you experiencing? Converting this code should be fairly straightforward. |
Forum: ASP.NET Jun 1st, 2009 |
| Replies: 1 Views: 547 Not that it matters, but the two attributes stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data source=127.0.0.1;user id=userid;password="xyz" are totally ignored in your... |
Forum: ASP.NET Jun 1st, 2009 |
| Replies: 3 Views: 698 There are a few articles on MSDN that will be able to help you out:
GridView Examples for ASP.NET 2.0: Editing the Underlying Data in a GridView:... |
Forum: ASP.NET Jun 1st, 2009 |
| Replies: 15 Views: 3,352 ASP.NET 2.0 and up have the ASP.NET Membership Provider and the login controls, which will make this simple for you. Check out this walkthrough on MSDN:... |
Forum: ASP.NET Jul 3rd, 2008 |
| Replies: 4 Views: 12,493 I need you to post your entire web.config file. The issue goes deeper then what you've posted.
Also, what you've done is considered "thread hijacking". Proper netiquette states that if you... |
Forum: ASP.NET Jan 3rd, 2008 |
| Replies: 6 Views: 3,575 Well, you can just output printer friendly HTML pages, but this won't allow you to control 100% of the paper output (the brower will put the url, page number, title, etc on the header/footer).
... |
Forum: ASP.NET Oct 2nd, 2004 |
| Replies: 3 Views: 3,125 See the original thread about this same question, here: 7483 |
Forum: ASP.NET Oct 2nd, 2004 |
| Replies: 1 Views: 3,955 I believe the J# runtime is included in .NET 1.1. Try re-running aspnet_regiis ;-). |
Forum: ASP.NET Sep 24th, 2004 |
| Replies: 2 Views: 2,799 The free pdf library, in my opinion, is not for beginers. All I do is .NET work, and I would say I'm good at it... and I had to really look at their source to see what the heck they were talking... |
Forum: ASP.NET Sep 24th, 2004 |
| Replies: 2 Views: 7,716 Is the databind to the datagrid in an IsPostBack conditional? Are you executing it each time?
It sounds like when the page gets posted back, your data is being rebound and resetting. |
Forum: ASP.NET Sep 6th, 2004 |
| Replies: 6 Views: 54,973 Which line did you get the error on? I really haven't worked with the image data type before (i usually store an uploaded image on the server's file system), but I can play with it ;). |
Forum: ASP.NET Sep 3rd, 2004 |
| Replies: 2 Views: 20,764 DataGrid1.DataSource = yourdatareader;
DataGrid1.DataBind(); |
Forum: ASP.NET Sep 2nd, 2004 |
| Replies: 8 Views: 7,720 Sounds like there is a weird DNS/Hosts file issue going on. In the command prompt, try pinging localhost. What IP does that return?
When creating a new project, try using http://127.0.0.1/... |
Forum: ASP.NET Sep 1st, 2004 |
| Replies: 15 Views: 36,746 Yup, dispose of them once your done. We are talking about the same thing... the dispose method isn't just another method of that class, it was inherited (and probably overridden in that class)... |
Forum: ASP.NET Sep 1st, 2004 |
| Replies: 15 Views: 36,746 Yeah, you can adapt it to use a DataSet. But, from a performance standpoint, you're better off using SqlDataReader; there is much less overhead. You can bind a SqlDataReader to DataGrids and most... |
Forum: ASP.NET Sep 1st, 2004 |
| Replies: 15 Views: 36,746 When an object impliments IDisposable, it means it has a Dispose() method, which cleans up any objects that the object has created for its own use. It should be called right before the object goes... |
Forum: ASP.NET Sep 1st, 2004 |
| Replies: 15 Views: 36,746 ROFL, I'm underage ;) . I don't think text can store this character: 廙
(FYI, thats a Final Pe in hebrew :))
//Edit: I guess MySQL can't store it either ;) . |
Forum: ASP.NET Sep 1st, 2004 |
| Replies: 15 Views: 36,746 LOL! Thanks for the praise ;). Anyways, always try to use n[datatypes]. They might hold 'slightly' less; but they are unicode datatypes (they hold WAY more types of chars).
Also, wherever... |
Forum: ASP.NET Aug 31st, 2004 |
| Replies: 8 Views: 6,934 Yup. It works for every tag :). |
Forum: ASP.NET Aug 31st, 2004 |
| Replies: 15 Views: 36,746 Wow, that was some fun VB.NET practice.. I haven't done anything in VB.NET for a while now :) |
Forum: ASP.NET Aug 31st, 2004 |
| Replies: 15 Views: 36,746 Okay, here is a class that will interact with the stored procedures:
Imports System.Data
Imports System.Data.SqlClient
Public Class ArtDB
Private _connectionString As String
... |
Forum: ASP.NET Aug 31st, 2004 |
| Replies: 15 Views: 36,746 Stored Procedure for Reading:
CREATE PROCEDURE dbo.GetArt
AS
Select
*
FROM
TableName
Stored Procedure for Updating:
CREATE PROCEDURE dbo.UpdateArt |
Forum: ASP.NET Aug 28th, 2004 |
| Replies: 2 Views: 11,370 How are you using validation? Using the validator controls? They are done client side, via Javascript, and are IE PC only. |
Forum: ASP.NET Aug 28th, 2004 |
| Replies: 8 Views: 7,720 Have you enabled fronpage extensions? What's your hosts file look like? |
Forum: ASP.NET Aug 27th, 2004 |
| Replies: 8 Views: 7,720 Do you have IIS installed? Is the World Wide Web service? What does your event log look like? Try doing a repair install on VS.NET.... |
Forum: ASP.NET Aug 21st, 2004 |
| Replies: 9 Views: 9,820 That isn't a valid ASP.NET page.
You need to add this to the top of the page:
<%@ Page language="c#" %>
and the time part should be, <%= System.DateTime.Now.ToLongTimeString() %> |