Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

ASP.NET | Forum profile

Forum profile page for ASP.NET on http://www.daniweb.com. This report page is the aggregated overview from a single forum: ASP.NET, located on the Message Board at http://www.daniweb.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "ASP.NET" on the Message Board at http://www.daniweb.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: www.daniweb.com - IT Tech Talk - ASP.NET (site profile, domain info daniweb.com)
Title: ASP.NET
Url: http://www.daniweb.com/forums/forum18.html
Users activity: 17 post per thread
Forum activity: 68 active threads during last week
 

Posting activity on ASP.NET:

  Week Month 3 Months
Threads: 68 257 844
Post: 102 381 1,456
 

ASP.NET Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
adatapost
11
user's latest post:
Using ajax calendar in asp.net
Published (2009-12-02 06:50:48)
You're on your own for holidays, though; .NET doesn't know which dates are holidays where you live. Help with Code Tags ASP.NET Syntax ( Toggle Plain Text ) int days = 0 ; DateTime sdt = DateTime. Parse ( "2/1/2009" ) ; DateTime edt = DateTime. Parse ( "2/28/2009" ) ; int dowStart = ( ( int ) sdt. DayOfWeek == 0 ? 7 : ( int )...
reach_shailshar
9
user's latest post:
Error During the creation of a...
Published (2009-11-30 06:33:12)
hello!!! the error occurs because of the absence of the virtual directory of the website. when u develop a website it automatically genrate its directory in ISS , when u carry a website from another system in removable memory device, it creates the same problem as u have mentioned. to overcome the problem u have to create a virtual directry in The IIS for which follow the path.. START>>Control Panel>>Administrative...
Ramesh S
7
user's latest post:
Barcode scanning
Published (2009-12-01 00:00:00)
If you want to use barcode scanner, you need to use a third party activex control which supports it. It will work in IE only. I believe you want to use barcode scanner in WinForms application. Please post the WinForms question in C# Forum in future. you will need different code for each type of scanner you are using. Check whether your scanner maufacturer provide any SDK to program your scanner. Also look into OpenNETCF's Smart Device...
Sals
5
user's latest post:
Connection to database error...
Published (2009-12-02 02:51:41)
• • • • Originally Posted by MrDavo Hi Everyone, I am seeing the following error message whilst attempting to access a website that is hosted on my workstation computer (127.0.0.1) Error Type: Microsoft OLE DB Provider for SQL Server (0x80004005) [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied. C:\INETPUB\WWWROOT\INTRANET\..\connection.asp, line 12 If anybody can shed some...
chandru7
4
user's latest post:
Using ajax calendar in asp.net
Published (2009-12-02 06:50:48)
Just try this simple code in javascript Help with Code Tags ASP.NET Syntax ( Toggle Plain Text ) var startDate = new Date ( startdt ) ; var EndDate = new Date ( endDt ) ; var WorkingDayCount= 0 ;   if ( startDate < EndDate ) { if ( startDate. getDay ( ) != 0 && startDate. getDay ( ) != 6 ) {...
all4peace
4
user's latest post:
Uploading my website
Published (2009-12-03 00:00:00)
Hi everyone, Hmmmm... This is really bothering me... So, I went to 1and1.com troubleshooting and found this code. I ran it with my connection string: Help with Code Tags ASP.NET Syntax ( Toggle Plain Text ) server=*****. net , 1433 ; initial catalog=db*****;uid=dbo*****;pwd=***** server=*****.net,1433; initial catalog=db*****;uid=dbo*****;pwd=***** It actually worked!!! So, I said let me go back to my original code and see what's going...
willopt_ric
3
user's latest post:
Urgent:ListBox validation
Published (2009-11-26 07:28:55)
yeah.....but mine is c#...... so do u mean that i need to exit from the button click event??? How??/
sknake
3
user's latest post:
Problem with Insert
Published (2009-12-02 07:50:35)
I don't think it is possible to run multiple queries in a single transaction with access. You have to split it out to two commands in code.
Ryshad
2
user's latest post:
How to create a dynamic table,...
Published (2009-11-26 08:27:51)
Ah, your using asp Tables...in that case check this out
thilinam
2
user's latest post:
Create Forum application in asp.net
Published (2009-11-28 01:39:44)
I found that number may be an ID of the thread in the database. It is generated due to url rewriting. Now I wand to know how to do it in my web site. Please Help me.
 

Latest active threads on ASP.NET::

www.daniweb.com - IT Tech Talk
Started 1 day, 4 hours ago (2009-12-06 06:40:53)  by reach_yousuf
Use Sessions Assing Value to session variable Help with Code Tags ASP.NET Syntax ( Toggle Plain Text ) Session ( "myname" ) = "xyz" Session("myname") = "xyz" To retrieve value from session Help with Code Tags ASP.NET Syntax ( Toggle Plain Text ) txtbox. text = session ( "myname" ) txtbox.text ...
Thread:  Show this thread (2 posts)   Thread info: Passing Value to another page & then again to another page Size: 2,131 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Passing Value to another page & then again to another page :: ASP.NET :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 1 day, 22 hours ago (2009-12-05 12:41:19)  by shibbard
All you are storing in the DB is the string. It will only have newlines in the DB column if you insert newline characters (vbCrLf, vbNewLine are used in Access). So if you hit return in the textbox to create a new line I think you will see '/n'. Find these, replace them with vbCrLf or vbNewLine and this should retain the newlines into the DB.
Thread:  Show this thread (2 posts)   Thread info: add and read multiline text to and from Database Size: 486 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: add and read multiline text to and from Database :: ASP.NET :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 7 months ago (2009-05-08 03:21:28)  by Kusno
• • • • Originally Posted by bharanidharanit Hello, I am having 3 pages default.aspx, default1.aspx and default2.aspx Default.aspx is the home page. When i click default2.aspx, it must check whether i have logged in, if not it must redirect to a login page(default1.aspx) You may use session to check your user id Help with Code Tags...
Thread:  Show this thread (5 posts)   Thread info: Navigating a page Size: 2,748 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Navigating a page :: ASP.NET :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 2 days, 10 hours ago (2009-12-05 00:00:00)  by t1g3r
Firstly, thanks for having a look at my prob. I agree, the prob is making contact with SQL Express 2008. It is installed. I can connect to it using SQL Server Management Studio. I have no firewall installed. Regards, Ming
Thread:  Show this thread (2 posts)   Thread info: Machine Account Local Profile Size: 424 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Machine Account Local Profile :: ASP.NET :: www.daniweb.com - IT Tech Talk"
www.daniweb.com - IT Tech Talk
Started 3 days, 4 hours ago (2009-12-04 06:40:09)  by anup.maverick
Thats what i am doing now. CHECK FOR DUPLICATES. If you can tell me the code How to check for Duplicates in vb.net, then i can save my time... Thanx
Thread:  Show this thread (2 posts)   Thread info: Random Number Code Size: 313 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Random Number Code :: ASP.NET :: www.daniweb.com - IT Tech Talk"
 

Hot threads for last week on ASP.NET::

ASP.NET
Started 5 days, 2 hours ago (2009-12-02 07:50:35)  by sknake
I don't think it is possible to run multiple queries in a single transaction with access. You have to split it out to two commands in code.
Thread:  Show this thread (6 posts)   Thread info: Problem with Insert Size: 266 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem with Insert :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 5 days, 10 hours ago (2009-12-01 23:51:41)  by mail2saion
I think either your connection string has the problem or the user has no permission to connect to the server. Did you get any "Remote connection" type error?
Thread:  Show this thread (4 posts)   Thread info: Connection to database error message Size: 311 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Connection to database error message :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 1 week ago (2009-11-30 07:32:33)  by love_dude1984
no..thats just some info about images & abt javascripts...nthn else...
Thread:  Show this thread (3 posts)   Thread info: how to use javascript with .net controls like imagebutton? Size: 201 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: how to use javascript with .net controls like imagebutton? :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 6 days, 10 hours ago (2009-12-01 00:00:00)  by praveenfds
This is the sample page to test this problem, here i have placed two gridview one is connected with access database and another one connected with sql database,connected with sqldatabase is working but not access database. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http...
Thread:  Show this thread (3 posts)   Thread info: Problem in edit,delete in gridview in asp.net Size: 10 kb
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem in edit,delete in gridview in asp.net :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 1 week, 5 days ago (2009-11-25 00:00:00)  by sathishkumar.j
1. After the selection made in the Datagrid, u convert the gridvalues in Xml and then pass in to one Stored procedure Ex : ================= string strXml = "<ROWS>"; foreach (GridViewRow gvRC in GridView1.Rows) { strXml += "<ROW><CheckBoxVal>" + gvRC.Cells["CheckBoxVal"].Text +"</CheckBoxVal>"; strXml += "<...
Thread:  Show this thread (5 posts)   Thread info: Selecting a record from a datagrid and passing it as a variable Size: 2,880 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Selecting a record from a datagrid and passing it as a variable :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 4 days, 10 hours ago (2009-12-03 00:00:00)  by abby524
Hi, thank you for your response, this may be a silly questions, but what page should I remove the tag from?
Thread:  Show this thread (3 posts)   Thread info: How to create a feedback form in ASP.Net 3.5 VB Size: 234 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to create a feedback form in ASP.Net 3.5 VB :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 1 week ago (2009-11-30 02:34:28)  by reach_shailshar
to increase the efficiency of your website.. develop the pages using CSS through which u can control number of pages simultaneously decreasing the code n workout time.. it also makes it easier for the developer to concate the pages for the admin section of the website...
Thread:  Show this thread (2 posts)   Thread info: how to cretae web page more efficiant Size: 415 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: how to cretae web page more efficiant :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 1 week ago (2009-11-30 00:35:19)  by akella2k9
• • • • Originally Posted by Ramesh S The default features of asp.net server controls does not provide the functionalities which you speficied in your question. you need to put a lot of efforts to achieve what you want. Instead, you can look into the following third party components. Infragistics Telerik ComponentArt Ramesh, I...
Thread:  Show this thread (2 posts)   Thread info: Drag and Drop ASP.NET Controls at Runtime from a custom ToolBox ? Size: 1,849 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Drag and Drop ASP.NET Controls at Runtime from a custom ToolBox ? :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 6 days, 10 hours ago (2009-12-01 00:00:00)  by Ramesh S
When you run your application in VS 2008, it will run under your nt login credentials. But when you deploy your application in IIS 5.x in Windows XP, it will run under aspnet account and Network Service account in Windows 2003. Therefore the above accounts may not have access to the folder where your file exists. Just checkt that.
Thread:  Show this thread (2 posts)   Thread info: System.Diagnostics.P rocess.Start Error Size: 493 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: System.Diagnostics.P rocess.Start Error :: ASP.NET :: www.daniweb.com - IT Tech Talk"
ASP.NET
Started 5 days, 9 hours ago (2009-12-02 00:51:56)  by Sals
• • • • Originally Posted by witinnovation I have read the article that how to create waiting page but not understand properly anyone can post one more example of waiting page in ASP.net Instead of using waiting page use Update Progress of AJAX that will make ur life very easy
Thread:  Show this thread (2 posts)   Thread info: Creating waiting page in ASP.net Size: 970 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Creating waiting page in ASP.net :: ASP.NET :: www.daniweb.com - IT Tech Talk"