Search Results

Showing results 1 to 40 of 115
Search took 0.01 seconds.
Search: Posts Made By: Tekmaven ; Forum: ASP.NET and child forums
Forum: ASP.NET Jun 15th, 2009
Replies: 5
Views: 644
Posted By Tekmaven
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
Posted By Tekmaven
There is no way to do that. ASP.NET is a server side language.
Forum: ASP.NET Jun 8th, 2009
Replies: 4
Views: 494
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
http://www.c-sharpcorner.com/UploadFile/mgold/DotNetBlog12022005013909AM/DotNetBlog.aspx
Forum: ASP.NET Jun 5th, 2009
Replies: 4
Views: 1,059
Posted By Tekmaven
@ithelp: that is exactly what I was thinking :)
Forum: ASP.NET Jun 5th, 2009
Replies: 4
Views: 1,059
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
Forum: ASP.NET Jun 1st, 2009
Replies: 3
Views: 698
Posted By Tekmaven
Forum: ASP.NET Jun 1st, 2009
Replies: 1
Views: 1,001
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
See the original thread about this same question, here: 7483
Forum: ASP.NET Oct 2nd, 2004
Replies: 1
Vj
Views: 3,955
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
DataGrid1.DataSource = yourdatareader;
DataGrid1.DataBind();
Forum: ASP.NET Sep 2nd, 2004
Replies: 8
Views: 7,720
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
Yup. It works for every tag :).
Forum: ASP.NET Aug 31st, 2004
Replies: 15
Views: 36,746
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
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
Posted By Tekmaven
Have you enabled fronpage extensions? What's your hosts file look like?
Forum: ASP.NET Aug 27th, 2004
Replies: 8
Views: 7,720
Posted By Tekmaven
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
Posted By Tekmaven
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() %>
Showing results 1 to 40 of 115

 


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

©2003 - 2009 DaniWeb® LLC