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

Web Forms | Forum profile

Forum profile page for Web Forms on http://www.asp.net. This report page is the aggregated overview from a single forum: Web Forms, located on the Message Board at http://www.asp.net. 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 "Web Forms" on the Message Board at http://www.asp.net 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: Forums - ASP.NET Forums - Web Forms (site profile, domain info asp.net)
Title: Web Forms
Url: http://forums.asp.net/18.aspx
Users activity: 3 posts per thread
Forum activity: 243 active threads during last week
 

Posting activity on Web Forms:

  Week Month 3 Months
Threads: 243 628 1,590
Post: 720 1,858 4,711
 

Web Forms Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
tugberk_ugurlu_
20
user's latest post:
Date validation from 2nd text box
Published (2009-11-26 11:00:19)
Hi Bro I need this as well  Good question  I guess you worked in a travel agent or a tour operator just like me. Try to use custom validator and AJAX extenders for that. You will find a way I guess.
jitendramcu
20
user's latest post:
how large file upload in asp.net...
Published (2009-11-26 23:33:00)
Read this 1) http://msdn.microsoft.com/en-us/library/aa479405.aspx  solution is given there 2) http://thedotnet.com/nntp/69797/showpost.aspx 
rtpHarry
16
user's latest post:
Register Javascript with in the...
Published (2009-11-24 14:38:07)
webfort: http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js for it to work, I don't want reference external files. jquery is hosted on a bunch of CDN's but you dont have to use them. You can simply download jQuery from its homepage and put a copy in your local site: http://docs.jquery.com/Downloading_jQuery btw the external url in question is used by a lot of projects for good reasons:...
MetalAsp.Net
16
user's latest post:
Image icons on webpage
Published (2009-11-27 06:40:00)
146k is nothing in today's world.  Most people are on a high speed internet connection.  Heck, I'm sure some pages have even single images that are this size or more.  So no, in my opinion, no way is this 146k causing your page's slowness.
irokhes
15
user's latest post:
Display database fields in Calendar
Published (2009-11-26 09:48:54)
hi, here you have some info about showing event into calendar http://msdn.microsoft.com/en-us/library/ms228044.aspx http://programming.top54u.com/post/Select-ASP-Net-Calendar-Control-Dates-from-SQL-Database.aspx   I hope it ´ll be helpful for you. good luck 
mudassarkhan
13
user's latest post:
Control extensions?
Published (2009-11-26 12:04:47)
  For Dropdownlist you should do the following string text =  DropDownList1.SelectedItem.Text; string value=  DropDownList1.SelectedItem.Value;
thuhue
13
user's latest post:
Video control
Published (2009-11-25 17:09:00)
Read here: http://en.wikipedia.org/wiki/Microsoft_Silverlight
nijhawan.saurabh
12
user's latest post:
How to display ppt slides on...
Published (2009-11-27 03:57:00)
prog.mukesh: thanx but i have tried a lot but i am unable to convert ppt into swf. do you have any idea about it? Check this out: " How to Convert a Powerpoint (ppt) Into a Flash (swf) Animation With OpenOffice Impress Turn your powerpoint slideshow into a Macromedia Flash file that can easily be added to web pages. You can do it for free using OpenOffice. "...
vijayst
11
user's latest post:
Re: using onBlur with asp.net...
Published (2009-11-26 06:48:57)
Do you mean when leaving the textbox, you want to write a query on the database? You can set AutoPostBack property of TextBox to True, and write the TextChanged Event, In this you can do all DB queries.
PeteNet
11
user's latest post:
Button with command event just...
Published (2009-11-25 12:37:00)
mad-halfling: Button addMoveButton =  new  Button();   addMoveButton.ID = String.Format( "btnMove[{0}]" , counter);   addMoveButton.CommandName =  "move" ;   addMoveButton.CommandArgument = targetRef;  ...
 

Latest active threads on Web Forms::

Forums - ASP.NET Forums
Started 22 hours ago (2009-11-28 13:59:33)  by amitchandnz
Are you able to debug the application at all through Visual Studio?
Thread:  Show this thread (15 posts)   Thread info: Web application suddenly painfully slow loading Size: 169 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Web application suddenly painfully slow loading :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 17 hours, 15 minutes ago (2009-11-28 18:45:04)  by Aquaren
Give this a try: String.Format("SELECT * FROM dbo.Table WHERE SomeValue {0} {1}", SelectedOperatorFromListBox, filterValue) This will allow you to create your sql select query dynamically.
Thread:  Show this thread (3 posts)   Thread info: Changing operator based on ListBox choice Size: 309 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Changing operator based on ListBox choice :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 17 hours, 58 minutes ago (2009-11-28 18:01:35)  by thuhue
If you are looking for a tool as described, you can try SnagIt : http://www.techsmith.com/download/trials.asp There is an old version for download: http://www.oldapps.com/SnagIT.php?old_snagit=12 Hope this helps!
Thread:  Show this thread (5 posts)   Thread info: Asp.net SceenShot, Screen Capture Size: 551 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Asp.net SceenShot, Screen Capture :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 18 hours, 6 minutes ago (2009-11-28 17:54:05)  by TonyWhalen
I usually use a ViewState backed public property for this assuming you are in control of whether ViewState is enabled for your application/page. e.g. public int Counter { get { if (ViewState["Counter"] == null) return 0; else return int.Parse(ViewState["Counter"].ToString()); } set { ...
Thread:  Show this thread (5 posts)   Thread info: What kind of variable shall I use for this? Size: 983 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: What kind of variable shall I use for this? :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 19 hours, 29 minutes ago (2009-11-28 16:30:36)  by XIII
Hi, you're doing some strange things here: patientd1: Dictionary<string, string> goals = new Dictionary<string, string>(); CheckBoxList1.Controls.Clear(); while (myReader.Read()) { goals.Add(myReader["Answer_num"].ToString(),myRead er["Answer"].ToString()); String ChkBoxID = "chkBox" + myReader["Answer_num"].ToString();...
Thread:  Show this thread (4 posts)   Thread info: creating checkboxes Size: 1,912 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: creating checkboxes :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 18 hours, 5 minutes ago (2009-11-28 17:55:07)  by MetalAsp.Net
Worked pretty good for me with this: <a href='query.aspx?delete=1&id=2' onclick="return confirm('Pressing OK will delete this record. Do you want to continue');">Delete</a> Replaced the single quote with double quote for the onclick value.
Thread:  Show this thread (3 posts)   Thread info: warn before deleting Size: 457 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: warn before deleting :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 18 hours, 10 minutes ago (2009-11-28 17:49:37)  by thuhue
Please post more code for better help.
Thread:  Show this thread (2 posts)   Thread info: Set RangeValidator attributes at run-time for ListView InsertItem Size: 144 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Set RangeValidator attributes at run-time for ListView InsertItem :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 18 hours, 11 minutes ago (2009-11-28 17:49:08)  by jimmy q
Wahat is the actual error message you are getting? It can be anything from a timeout because the file is too big, or permissions related because the account cant write, file io errors because the folder cannot be found. Look at the event log or the exception raised.
Thread:  Show this thread (2 posts)   Thread info: fileUpload fails Size: 384 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: fileUpload fails :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 19 hours, 45 minutes ago (2009-11-28 16:14:39)  by Mikesdotnetting
I'm not sure how you got your code in such a mess, here's how it should look (omitting the usings): public partial class Controls_Problem : System.Web.UI.Page { string smonth = txtDate.Text.Substring(0, 2); string sday = txtDate.Text.Substring(3, 2); string syear = txtDate.Text.Substring(6, 4); int imonth = Convert.ToInt16(smonth); int iday = Convert.ToInt16(sday); ...
Thread:  Show this thread (4 posts)   Thread info: Writing an appointment application to study skills Size: 2,050 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Writing an appointment application to study skills :: Web Forms :: Forums - ASP.NET Forums"
Forums - ASP.NET Forums
Started 18 hours, 39 minutes ago (2009-11-28 17:21:09)  by Ambran
Hi newbie2C#: UserLogin.ltrlFailureText = "Your login wasn't succesfull. Please try again." ; The compiler thinks that you want to access a method within UserLogin by the name "ltrlFailureText", that's why you get this error. The ltrlFailureText control is static so you can access it directly: ltrlFailureText.Text = "Your login wasn't succesfull. Please try again."; Amit...
Thread:  Show this thread (2 posts)   Thread info: Why does this error say this literal doesn't exist? Size: 773 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Why does this error say this literal doesn't exist? :: Web Forms :: Forums - ASP.NET Forums"
 

Hot threads for last week on Web Forms::

Web Forms
Started 4 days ago (2009-11-25 11:57:00)  by budugu
You can pass information between pages in various ways, check this.. http://msdn.microsoft.com/en-us/library/6c3yckfw.a spx and to Crystal report.. http://forums.asp.net/p/1492113/3511274.aspx
Thread:  Show this thread (18 posts)   Thread info: Passgin a paramater trough pages Size: 512 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Passgin a paramater trough pages :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 1 week ago (2009-11-22 09:27:49)  by tugberk_ugurlu_
also I have realised that I opened it in the wrong forum. Also you can advice me how I can change the forum. Wait your replies on this.
Thread:  Show this thread (17 posts)   Thread info: Get the Content of the Form to the .mdb Database ! Size: 246 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Get the Content of the Form to the .mdb Database ! :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 2 days, 10 hours ago (2009-11-27 01:48:00)  by prog.mukesh
Please help me guys.I need the solutin immediatly.
Thread:  Show this thread (16 posts)   Thread info: How to display ppt slides on webpages? Size: 145 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How to display ppt slides on webpages? :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 22 hours ago (2009-11-28 13:59:33)  by amitchandnz
Are you able to debug the application at all through Visual Studio?
Thread:  Show this thread (15 posts)   Thread info: Web application suddenly painfully slow loading Size: 169 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Web application suddenly painfully slow loading :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 6 days, 3 hours ago (2009-11-23 08:12:00)  by rtpHarry
You have to use SMTP, it is the technology that is used to transport outgoing emails off into the internet. This website shows you all of the sample codes you will need to get emails sending: http://www.systemnetmail.com/ If you dont have an email server then you can use google's one as detailed here: http://www.aspsnippets.com/post/Send-Email-using-C Sharp.aspx The specific ...
Thread:  Show this thread (12 posts)   Thread info: Sending form via email Size: 885 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Sending form via email :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 3 days, 14 hours ago (2009-11-25 21:29:20)  by kpyap
Hi, May I know what do you mean not working? CustomValidator should display * if CheckBox is not Checked when DropDownList_SelectedIndexChanged.
Thread:  Show this thread (11 posts)   Thread info: Need to validate a checkbox with other controls Size: 259 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Need to validate a checkbox with other controls :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 1 day ago (2009-11-28 11:13:13)  by mudassarkhan
check this out http://aspsnippets.com/post/2009/08/19/Multiple-Fi le-Uploads-Gmail-Style-using-JQuery-and-ASPNet.asp x
Thread:  Show this thread (11 posts)   Thread info: Large file upload control Size: 345 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Large file upload control :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 3 days ago (2009-11-26 11:10:15)  by ghassan_aljabiri
your question is not cleare , could you please be more specific ? or ask one question at a time
Thread:  Show this thread (10 posts)   Thread info: Upload file into folder and database..!! Size: 206 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Upload file into folder and database..!! :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 1 week, 1 day ago (2009-11-21 09:01:00)  by qwe123kids
Hi, Use Session for Chcking and Displaying Pagess.. example string LinkPath ="" if(Convert.toString(Session["Userid"]) =="2" || Convert.toString(Session["Userid"]) =="1") { LinkPath = LinkPath + "<a > Mylink1</a>"; } if(Convert.toString(Session["Userid"]) =="1") { LinkPath = LinkPath + "<a > Mylink2</a>"; } construct the Link.. and Chk Session on page if Session ...
Thread:  Show this thread (10 posts)   Thread info: multiple pages redirection Size: 780 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: multiple pages redirection :: Web Forms :: Forums - ASP.NET Forums"
Web Forms
Started 2 days, 5 hours ago (2009-11-27 06:40:00)  by MetalAsp.Net
146k is nothing in today's world. Most people are on a high speed internet connection. Heck, I'm sure some pages have even single images that are this size or more. So no, in my opinion, no way is this 146k causing your page's slowness.
Thread:  Show this thread (10 posts)   Thread info: Image icons on webpage Size: 361 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Image icons on webpage :: Web Forms :: Forums - ASP.NET Forums"