|
More site info...
|
|
Forum profile page for ASP.NET on http://www.vbforums.com.
This report page is the aggregated overview from a single forum: ASP.NET, located on the Message Board at http://www.vbforums.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.vbforums.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.
|
|
|
|
|
Posting activity on ASP.NET:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
181
|
619
|
1,531
|
|
Post:
|
739
|
2,196
|
6,155
|
|
|
ASP.NET Posting activity graph:
|
Top authors during last week:
user's latest post:
Trying to get blink text effect...
Published (2009-11-27 16:38:00)
Quote: Originally Posted by blakemckenna Gary, Referring to post #12, where is the following code supposed to go? Code: Dim mmp As MyMasterPage = DirectCast(Me.Master, MyMasterPage) mmp.MyAwesomeLabel.Text = "Text from the content page" Here is the code that I put in my master page. I'm thinking that the above code goes in here... Code: <script runat="server"> Public mmp As site2 =...
user's latest post:
Trying to get blink text effect...
Published (2009-11-27 16:33:00)
You said that you wanted the content pages to be able to access the master page's label. Presumably, you had some idea in mind at which point you wanted to access it? If you want access to the master page's label because you want to set some text in it, then use that code at the point at which you are going to write something to it, not outside a method.
user's latest post:
[RESOLVED] SP / SQL Strings...
Published (2009-11-27 16:57:00)
wow, that's very interesting mendhak, of course i didn't fully understand it, can you provide me direction (or good book name) of how to learn the basics of the "tires" architecture ?
user's latest post:
Trying to get blink text effect...
Published (2009-11-27 17:26:00)
This is just weird....I put the statement in #1 in the code-behind file in one of my child pages. Then in a Sub Procedure, I put the line of code that's in #2 but it's not working as it's not being recognized. #1 Code: Dim mmp As site2 = DirectCast(Me.Master, site2) #2 Code: mmp.errorLabel.Text = "" Geez....what am I doing wrong. This is such a different animal as opposed to straight VB.Net programming. Thanks,
user's latest post:
ASP.NET Delete records after...
Published (2009-11-23 18:25:00)
Okay i can try this, but how do i make button which check does 12h is gone can you assist with it too?
user's latest post:
[RESOLVED] Gridview Delete...
Published (2009-11-27 02:05:00)
You need to check this points. First Comment this portion Code: protected void gvExistingCustomers_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { LinkButton delbutton =(LinkButton)e.Row.Cells[5].Controls[0]; delbutton.OnClientClick = string.Format("return confirm('Are you certain you want to delete the {0} Customer?');"); } } and check whether it is...
user's latest post:
MySQL and dates
Published (2009-11-27 18:31:00)
Quote: Originally Posted by mendhak You're giving them a plain textbox to type the date in? Not the best approach even if you try to helpfully format it. How do you know the difference between 6/9/2009 and 9/6/2009? I'm not giving them anything - this is the AutoGenerateEditButton of the DetailsView doing all the work. Quote: Originally Posted by mendhak Do what other sites do and either give them a javsacript based calendar control...
user's latest post:
SQL Timeout when populating my...
Published (2009-11-24 09:14:00)
Quote: Originally Posted by mendhak But is there an index on LastActive? On the SQL table, that is. You're ordering by it so it would help to have an index on it. ContactID is a primary key of some sort, so I guess it already has an index on it? ContactID is the primary key yes. I am not sure I follow your question 'is there an index on LastActive'? Ive looked at its properties and 'indexable' = yes
user's latest post:
Moving over the entire project...
Published (2009-11-26 04:54:00)
Thanks. I'll look into that. And what about if I want to give it all over to my client for his programmers to work on?
user's latest post:
Problem accesing excel file on a...
Published (2009-11-25 16:52:00)
Mendhak and Gary, I tried UNC path as well today but kept getting different errors. For now, I moved the excel files to the webserver and everything works fine. However, I plan to come back to this issue again in a couple of weeks and post errors I am getting while using UNC. Thank you once again for your help.
|
|
|
|
Latest active threads on ASP.NET::
Started 3 days, 18 hours ago (2009-11-25 14:46:00)
by gep13
Hey,
I think you are perhaps mixing terminology here.
You would create a Base Page Class, which your Web Form would inherit from. This class could certainly be contained within your own assembly though.
Here is an example:
http://www.4guysfromrolla.com/articles/041305-1.as px
Hope that helps!
Gary
Started 19 hours, 49 minutes ago (2009-11-28 13:00:00)
by motil
did you tried to right click on the website folder and set permissions ?
Started 3 days, 8 hours ago (2009-11-26 00:42:00)
by danasegarane
Can't you go for the UpdatePanel in Ajax ?
Started 1 day, 1 hour ago (2009-11-28 07:21:00)
by motil
i found the cause of the problem just if any one else will have the same problem,
as mendhak and gep13 always saying, DO NOT USE RESPONSE.WRITE
it happened because i had response.write inside my page (different section), i will move to trace now thanks you:B
Started 1 day, 20 hours ago (2009-11-27 12:31:00)
by gep13
Hey,
Short answer is, you don't!!
A Date, is a Date, is a Date.
What you are talking about is the string representation of a date. When you get the date from the database, you will format it into the locale of the user and display it to the user. You will then use the user locale to construct the Date object, and then you will pass this back to the database for storage.
Another ...
Started 3 days, 17 hours ago (2009-11-25 15:36:00)
by Pradeep1210
I think stored procedures are preferred more due to security than performance. In 99% of the situations I code, performance difference is negligible. But the advantage of Stored procedures is it can shield most of sql injection attempts which would easily pass through the dynamically created sql strings.
Started 1 day, 17 hours ago (2009-11-27 15:17:00)
by gep13
Hey,
I think this question would best be answered in the ASP.Net Forum.
I have asked for your thread to be moved there.
Please ask all ASP.Net related questions in there, regardless of which . Net language you are using.
Gary
Started 4 days, 16 hours ago (2009-11-24 16:46:00)
by mendhak
Go back and find your favorite javascript to do this - all you need to do is replace the ID in the document.getElementById() bit with the actual ID of the ASP.NET ClientID property. This can be done with inline code by placing it right into the JS or it can be done by generating the JS string from the codebehind and performing the replacement there. You'll get a better idea if you show us the ...
|
|
Hot threads for last week on ASP.NET::
Started 1 week, 2 days ago (2009-11-20 08:06:00)
by gep13
Hey,
Are you using a SQL Server Database, or are you using something else?
If you are using SQL Server, then you could make a scheduled job which clears out the tables that you are interested in. This doesn't have to be a function of your website.
Gary
Started 3 days, 17 hours ago (2009-11-25 15:36:00)
by Pradeep1210
I think stored procedures are preferred more due to security than performance. In 99% of the situations I code, performance difference is negligible. But the advantage of Stored procedures is it can shield most of sql injection attempts which would easily pass through the dynamically created sql strings.
Started 5 days, 1 hour ago (2009-11-24 07:27:00)
by billyblue
SQL Timeout when populating my datalist
Hi Guys,
I appreciate this might well be a specific sql question and not really posted in the right place but I am not convinced as the statement runs fine in my database
I have a datalist that is populated by a users friends ordered by the date they last logged in.
Here is my ...
Started 5 days, 21 hours ago (2009-11-23 11:03:00)
by gep13
Hey,
Does the file exist in exactly the same place as it does on your development machine?
If not, you are going to have to change it to be the location of the actual file.
Gary
Started 3 days, 5 hours ago (2009-11-26 03:23:00)
by SallyS
Moving over the entire project to a remote server
Hi! I would like to copy over my 2008 .net website to another computer (server). When I do copy website the files get copied but not the solution. I want to copy over e/t because I want to be able to work on the project on the remote computer. I want to be able to make changes over ...
Started 4 days, 16 hours ago (2009-11-24 16:46:00)
by mendhak
Go back and find your favorite javascript to do this - all you need to do is replace the ID in the document.getElementById() bit with the actual ID of the ASP.NET ClientID property. This can be done with inline code by placing it right into the JS or it can be done by generating the JS string from the codebehind and performing the replacement there. You'll get a better idea if you show us the ...
Started 4 days, 7 hours ago (2009-11-25 01:44:00)
by gep13
Hey,
I take it the question that you have is that you want the currently selected item in the list to remain after a postback, when you bind it to the DataSource, is that correct?
You imply that, but it is not clearly stated.
Gary
Started 3 days, 18 hours ago (2009-11-25 14:46:00)
by gep13
Hey,
I think you are perhaps mixing terminology here.
You would create a Base Page Class, which your Web Form would inherit from. This class could certainly be contained within your own assembly though.
Here is an example:
http://www.4guysfromrolla.com/articles/041305-1.as px
Hope that helps!
Gary
Started 1 day, 20 hours ago (2009-11-27 12:31:00)
by gep13
Hey,
Short answer is, you don't!!
A Date, is a Date, is a Date.
What you are talking about is the string representation of a date. When you get the date from the database, you will format it into the locale of the user and display it to the user. You will then use the user locale to construct the Date object, and then you will pass this back to the database for storage.
Another ...
Started 6 days, 6 hours ago (2009-11-23 01:51:00)
by gep13
Hey,
Can you show the code where you are constructing the LINQ query?
This article seems to show exactly how it can be done:
http://blogs. msdn.com/erickt/archive...a-binding.a spx
Gary
|
|