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... 

.NET | Forum profile

Forum profile page for .NET on http://www.sitepointforums.com. This report page is the aggregated overview from a single forum: .NET, located on the Message Board at http://www.sitepointforums.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 ".NET" on the Message Board at http://www.sitepointforums.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: SitePoint : New Articles, Fresh Thinking for Web Developers and Designers - .NET (site profile, domain info sitepointforums.com)
Title: .NET
Url: http://www.sitepoint.com/forums/forumdisplay.ph...
Users activity: 28 posts per thread
Forum activity: 61 active thread during last week
 

Posting activity on .NET:

  Week Month 3 Months
Threads: 61 219 562
Post: 170 640 1,586
 

.NET Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
NightStalker-DNS
20
user's latest post:
ObjectDatasource
Published (2009-12-04 14:30:00)
I usually have a generic list or IQueryable type that I get from my BLL and handle the sort/filtering with linq on that b4 its returned and bind that to the control. You may very well use the objectDS. Especially if you are learning. Layers could be a bit overwhelming at first. So go a head and use things as you wish to learn. When you have a basic understanding of everything you can move the the layers
NAWA-mark
20
user's latest post:
Alternating Calendar Week Colors
Published (2009-12-04 13:56:00)
Nice work.
stevex33
18
user's latest post:
Running SQL Queries In VB.NET
Published (2009-12-06 08:54:00)
Sorry, I wasn't very specific was I? The database is an access 2007 one. I believe it is control based (I'm working with databases for the first time in VB.NET). It's a desktop application. Can you mix control based database stuff with code based? I've heard good things about LINQ but have never really used it. If you believe it would help me then I'm happy to learn it Basically I'd like to type in some sql code...
Serenarules
16
user's latest post:
Utilizing a Service Reference
Published (2009-12-06 23:08:00)
Consuming a web service is done via a proxy class and it's methods are called like any object. Perhaps the following document might be of interest to you. http://www.4guysfromrolla.com/articles/062602-1.2.aspx [edit] lol simul-post! Glad you got it working!
wwb_99
12
user's latest post:
Install Sql Server From a Setup...
Published (2009-12-04 08:49:00)
You'd probably need to add some installer steps for the user to feed your application a connection string (or the bits of a connection string like server name and user account, etc) and then check if the installer can connect. You can include Sql Express setup bits in installers or as a dependency as I understand things. It will add at least 50mb to your package though.
disgracian
9
user's latest post:
Using the GoTo statement to jump...
Published (2009-12-06 17:30:00)
Quote: Originally Posted by stevex33 That's my point, it's not overwriting, it's appending even though it's supposed to overwrite? In the code you posted, you called that method with true for the append parameter: Code: My.Computer.FileSystem.WriteAllText(fullPath & "\list-of-files.csv", content.ToString(), True) So of course it's going to append. Quote: At what point is it supposed to...
gRoberts
7
user's latest post:
Still having problems...
Published (2009-12-04 03:14:00)
This may or may not be useful, but the way we do things, is that we define a table with all of the roles. Then we have a table that stores the permission map. We either store the permission id's against a group or a single user. We then created an AuthenticationAttribute (ActionFilter as you appear to be using MVC) which takes a group, security role or boolean. When the action is executed, it checks to see if the user has the required...
dzflip
5
user's latest post:
How to know email address exist ?
Published (2009-11-28 00:19:00)
I know we can send a test email to make sure email address exist. But have another way to check email exist that don't need send test ? Anybody help, plz ?
ywndotno
5
user's latest post:
ASP.NET 3.5 DetailsView and...
Published (2009-12-02 07:08:00)
after 72 hours i actually managed to solve this I had to move the vb code to DetailsView_iteminserting - the code to use was: Protected Sub DetailsView1_ItemInserting(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DetailsViewInsertEventArgs) Handles DetailsView1.ItemInserting Dim FileUpload1 As FileUpload = CType(DetailsView1.FindControl("FileUpload1"), FileUpload) Dim virtualFolder As String =...
bar338
4
user's latest post:
Utilizing a Service Reference
Published (2009-12-06 23:05:00)
Ugh, sorry for so many repetitive posts. But I got it working now. However, it is much simpler and not event driven. It works for my purpose but any suggestions on improving the connection process? Using a service reference: Code: pollWebsite2.ServiceReference1.Service1Client poll = new pollWebsite2.ServiceReference1.Service1Client(); pollWebsite2.ServiceReference1.Poll[] test = poll.GetPollsByEvent(eventName); foreach...
 

Latest active threads on .NET::

SitePoint : New Articles, Fresh Thinking for Web Developers and Designers
Started 1 minute ago (2009-12-07 22:08:00)  by NightStalker-DNS
Are you basically asking how to make sure your data persists in the session? If so, this is how I handle it: I have a static class that I call that returns a custom object: LoggedInMember; LoggedInMember lim = functions.getLoggedInMember(); That method checks if the session is not null and returns the object if its there. If not, it does a database look up and re-saves it into session...
Thread:  Show this thread (2 posts)   Thread info: How to sync membership and session data Size: 734 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to sync membership and session data :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
SitePoint : New Articles, Fresh Thinking for Web Developers and Designers
Started 13 hours ago (2009-12-06 22:39:00)  by bar338
i've tried changing it from a service reference to a web reference and that solved some of my problems. the async, eventargs, and eventhandler variables are now appearing in the autocomplete. However, i'm still experiencing one error. Here is the error and my code: Error: Quote: Cannot implicitly convert type 'System.EventHandler<pollWebsite2.pollService....
Thread:  Show this thread (4 posts)   Thread info: Utilizing a Service Reference Size: 2,134 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Utilizing a Service Reference :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
SitePoint : New Articles, Fresh Thinking for Web Developers and Designers
Started 4 days, 18 hours ago (2009-12-02 17:22:00)  by ScallioXTX
Why don't you make a function or sub or routine or whatever it is called in that language nowadays?
Thread:  Show this thread (15 posts)   Thread info: Using the GoTo statement to jump into and out of "For Each" statements Size: 197 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Using the GoTo statement to jump into and out of "For Each" statements :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
SitePoint : New Articles, Fresh Thinking for Web Developers and Designers
Started 1 day, 3 hours ago (2009-12-06 08:27:00)  by Serenarules
Your answer depends on what data access method you are using. Can you elaborate? Is it control based or code based? Linq is a very good tool, and I could help there, but I don't know much about the asp:whatever controls.
Thread:  Show this thread (3 posts)   Thread info: Running SQL Queries In VB.NET Size: 220 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Running SQL Queries In VB.NET :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
SitePoint : New Articles, Fresh Thinking for Web Developers and Designers
Started 2 days, 21 hours ago (2009-12-04 14:30:00)  by NightStalker-DNS
I usually have a generic list or IQueryable type that I get from my BLL and handle the sort/filtering with linq on that b4 its returned and bind that to the control. You may very well use the objectDS. Especially if you are learning. Layers could be a bit overwhelming at first. So go a head and use things as you wish to learn. When you have a basic understanding of everything you can move the ...
Thread:  Show this thread (4 posts)   Thread info: ObjectDatasource Size: 421 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: ObjectDatasource :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
SitePoint : New Articles, Fresh Thinking for Web Developers and Designers
Started 3 days ago (2009-12-04 10:42:00)  by NAWA-mark
jQuery: javascript Code: $ ( document ) . ready ( function ( ) { $ ( "table.calendar tr:even" ) . attr ( { style: 'background:#f00;' } ) ; } ) ;
Thread:  Show this thread (6 posts)   Thread info: Alternating Calendar Week Colors Size: 1,383 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Alternating Calendar Week Colors :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
SitePoint : New Articles, Fresh Thinking for Web Developers and Designers
Started 3 days, 4 hours ago (2009-12-04 07:38:00)  by NightStalker-DNS
U usually do not distribute an app the requires a SQL Server database. You could use access or SqlLite for that sort of thing so the datafiles go a long. No, you cannot include the SQL install as its 1 gb on its on. So how big will your install be? Besides, the sql server install is going to be to complex for a using to install. Best bet is just to ask the user for settings that you save. DB ...
Thread:  Show this thread (4 posts)   Thread info: Install Sql Server From a Setup File Size: 544 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Install Sql Server From a Setup File :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
SitePoint : New Articles, Fresh Thinking for Web Developers and Designers
Started 5 days, 4 hours ago (2009-12-02 07:11:00)  by wwb_99
Why not return success when you don't have an exception, as any failure should get you said exception?
Thread:  Show this thread (6 posts)   Thread info: LINQ - Determining Update Success/Failure Size: 102 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: LINQ - Determining Update Success/Failure :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
 

Hot threads for last week on .NET::

.NET
Started 4 days, 18 hours ago (2009-12-02 17:22:00)  by ScallioXTX
Why don't you make a function or sub or routine or whatever it is called in that language nowadays?
Thread:  Show this thread (15 posts)   Thread info: Using the GoTo statement to jump into and out of "For Each" statements Size: 197 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Using the GoTo statement to jump into and out of "For Each" statements :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 1 week, 1 day ago (2009-11-28 18:17:00)  by Serenarules
I'm not so sure now that I'm the one the should be commenting on this, as I've had some resurgence of self-questioning lately, but I'll give you the run down, from top to bottom: Web / UI Layer: the mvc app - Some people actually move controllers to it's own class library as well. Presentation Layer: these are thin classes designed to package data for sending to views. Logistics ...
Thread:  Show this thread (14 posts)   Thread info: Programming in "layers" [ASP.NET MVC] Size: 1,435 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Programming in "layers" [ASP.NET MVC] :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 1 week, 1 day ago (2009-11-29 03:48:00)  by NightStalker-DNS
Yea, I know what you mean having a lot of trees in one forest for some project. I tend to keep all these "specialized" classes in its own assembly. As for the permissions. Are you using the built in asp.net roles system? I never use that. I always have a custom system that I build. With Roles and RolePermissions. yes it will take a lot of filtering to get the correct permission. But I usually ...
Thread:  Show this thread (13 posts)   Thread info: Still having problems... Size: 604 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Still having problems... :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 6 days, 8 hours ago (2009-12-01 03:30:00)  by disgracian
Using a buffered writer would be a much better idea. Cheers, D.
Thread:  Show this thread (9 posts)   Thread info: Can You Write A Collection/Array Into A Single String? Size: 88 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Can You Write A Collection/Array Into A Single String? :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 4 days, 6 hours ago (2009-12-03 05:06:00)  by NightStalker-DNS
I was just trying to think of a test myself as we are in the process of hiring. So I know what you mean when you looked for something. I usually gave shopping cart tests, but that is getting old and out dated now. But we need some1 with specific skills. So the test i can up with was to build a small admin section where a user can login and and upload images with titles and descriptions, edit ...
Thread:  Show this thread (9 posts)   Thread info: Practical interview tests... Suggestions? Size: 1,040 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Practical interview tests... Suggestions? :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 1 week, 4 days ago (2009-11-25 18:39:00)  by disgracian
What if the path has quotation marks in it? Cheers, D.
Thread:  Show this thread (9 posts)   Thread info: Reading a csv with commas Size: 177 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Reading a csv with commas :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 1 week ago (2009-11-29 21:39:00)  by wwb_99
Code looks ok, what is the error message?
Thread:  Show this thread (6 posts)   Thread info: Dorknozzle Chapter 9 data not writing to tables Size: 41 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Dorknozzle Chapter 9 data not writing to tables :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 1 week ago (2009-11-30 03:48:00)  by mattcch2007
Maybe you can download 'web platform installer' (plugin into iis) from microsoft site. I try it on iis 7.5 on win 08 web sever r2, there are several cms to choose. eg kentico cms for asp.net ,drupal ,wp etc (need php installed first) Hope a little help.
Thread:  Show this thread (6 posts)   Thread info: good cms that will run on IIS Size: 398 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: good cms that will run on IIS :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 3 days ago (2009-12-04 10:42:00)  by NAWA-mark
jQuery: javascript Code: $ ( document ) . ready ( function ( ) { $ ( "table.calendar tr:even" ) . attr ( { style: 'background:#f00;' } ) ; } ) ;
Thread:  Show this thread (6 posts)   Thread info: Alternating Calendar Week Colors Size: 1,383 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Alternating Calendar Week Colors :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."
.NET
Started 5 days, 4 hours ago (2009-12-02 07:11:00)  by wwb_99
Why not return success when you don't have an exception, as any failure should get you said exception?
Thread:  Show this thread (6 posts)   Thread info: LINQ - Determining Update Success/Failure Size: 102 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: LINQ - Determining Update Success/Failure :: .NET :: SitePoint : New Articles, Fresh Thinking for Web D..."