|
More site info...
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.
|
|
|
|
|
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:
|
Top authors during last week:
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.
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
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:...
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.
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
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;
user's latest post:
Video control
Published (2009-11-25 17:09:00)
Read here: http://en.wikipedia.org/wiki/Microsoft_Silverlight
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. "...
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.
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::
Started 22 hours ago (2009-11-28 13:59:33)
by amitchandnz
Are you able to debug the application at all through Visual Studio?
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.
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!
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 { ...
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();...
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.
Started 18 hours, 10 minutes ago (2009-11-28 17:49:37)
by thuhue
Please post more code for better help.
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.
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); ...
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...
|
|
Hot threads for last week on 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
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.
Started 2 days, 10 hours ago (2009-11-27 01:48:00)
by prog.mukesh
Please help me guys.I need the solutin immediatly.
Started 22 hours ago (2009-11-28 13:59:33)
by amitchandnz
Are you able to debug the application at all through Visual Studio?
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 ...
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.
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
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
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 ...
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.
|
|