Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:796959
More Search Options
RSS Available
Matching Posts
Re: I need some help with delaying the menu control
[quote user="The Ace"] I want to do exactly the opposite of this. The menu i am using has more than 1000 items in it. Whenever a user hovers on the menu it takes 3-4 seconds atleast for the flyout to display. Is there a way to make the javascript work fast? The same menu opened in Mozilla shows the flyouts in almost real time. So i think the javascript engine in IE has some issues. Any help or suggestion is greatly appreciated. [/quote] Wow! I can't imagine having more than 1,000 items
Posted to
Master Pages, Themes and Navigation Controls
(Forum)
by
yupinggang
on 11/4/2009
Re: Read excel worksheet - Syntax error in From clause
Could you post your solution here? By doing so, you are helping others who might be having the same problem. Thank you.
Posted to
Other Databases
(Forum)
by
yupinggang
on 5/8/2009
Re: The correct mehod of running multiple data sources
You can try the following SQL (you might need to tweak it to make it work). SELECT COUNT(*) AS CALL_LOGGING_ID, (SELECT COUNT(*) FROM CL_CALL_LOGGING WHERE (ACTUAL_LOG_DATE >= CONVERT(varchar(10), GETDATE(), 101)) AND (ACTUAL_LOG_DATE < CONVERT (varchar(10), GETDATE() + 1, 101)) )[RaisedToday], (SELECT COUNT(*) FROM CL_CALL_LOGGING WHERE (CALL_STATUS_REF = 2) AND (OWNING_GROUP = 1) OR (CALL_STATUS_REF = 3) AND (OWNING_GROUP = 1) )[InProgress] FROM CL_CALL_LOGGING The above SQL statement will
Posted to
Data Presentation Controls
(Forum)
by
yupinggang
on 5/6/2009
Re: Fill a GridView in default2.aspx based upon what textbox.text on default1.aspx contains
Hi. One way is to use session variable. Another way would be using PreviousPageType on second page (default2.aspx), something like this (<%@ PreviousPageType VirtualPath="~/default1.aspx" %>) Take a look at the following article, or google "PreviousPageType" for more information. http://msdn.microsoft.com/en-us/library/system.web.ui.page.previouspage.aspx
Posted to
Data Presentation Controls
(Forum)
by
yupinggang
on 4/30/2009
Re: The correct mehod of running multiple data sources
That is not the best way AFAIK since you are opening two connections to the database. You might want to take a look at the following links: http://social.msdn.microsoft.com/Forums/en-US/transactsql/thread/c10af010-b881-4aeb-a4a6-959696515cd8 http://stackoverflow.com/questions/734305/multiple-counts-in-sql-query
Posted to
Data Presentation Controls
(Forum)
by
yupinggang
on 4/30/2009
Re: Assign different colors to set of datagrid rows in asp.net form
Try this code: private int rowsInGroup = 3; private int minColorIndex = 1; private int maxColorIndex = 3; private int currentColorIndex = 3 ; // 1 = red, 2 = green, 3 = blue protected void gv1_RowDataBound( object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { int rowIndex = e.Row.RowIndex; // Determine if it is time to change color if ((rowIndex > 0) && (rowIndex % rowsInGroup) == 0) { currentColorIndex++; if (currentColorIndex > maxColorIndex
Posted to
Data Presentation Controls
(Forum)
by
yupinggang
on 4/30/2009
Re: Path in GridView Hyperlink column
What about relative URL? Try putting a slash "/" in front of "UserAddresses.aspx?id={0}". DataNavigateUrlFormatString= "/UserAddresses.aspx?id={0}"
Posted to
Data Presentation Controls
(Forum)
by
yupinggang
on 4/30/2009
Re: Problem while accessing an image via a Webservice
Hi Any error messages? Have you checked the event logs (Event Viewer)?
Posted to
XML Web Services
(Forum)
by
yupinggang
on 4/29/2009
Re: error smtp.Send(mail)
Thank you for the info. [quote user="arkreddy16"] System.Net.Mail.MailMessage mailMessage = new System.Net.Mail.MailMessage(); mailMessage.From = new System.Net.Mail.MailAddress(adminSettings.SystemEmail); mailMessage.To.Add(rk@abc.com); string hostName = System.Net.Dns.GetHostName(); mailMessage.Subject = txtSubject.Text; mailMessage.Body = txtMessage.Value; System.Net.Mail.SmtpClient smtpClient = new System.Net.Mail.SmtpClient(); smtpClient.Host = smtp.yourcompany.com; smtpClient.Credentials
Posted to
Installation and Setup
(Forum)
by
yupinggang
on 12/20/2008
Re: Output parameter??????
Hi. Instead of converting the output to decimal, try to assign the return values directly, like this: ExRate_Calculated = param.Value; //Here ExRate_Calculated is declared as decimal ExAmount_Calculated = paramversion.Value; //Here ExAmount_Calculated is declared as decimal
Posted to
Data Access and ObjectDataSource Control
(Forum)
by
yupinggang
on 12/16/2008
Page 1 of 2 (12 items) 1
2
Next >
WindowsClient:
Build WPF Data Controls for Outlook Addins Easily with VS2010
Channel 9:
Channel 9 Live at PDC09: .Net Rocks Part 2
Channel 9:
Channel 9 Live at PDC09: .Net Rocks Part 1
Channel 9:
Channel 9 Live at PDC09: Wei Zhu (Facebook)
WindowsClient:
WPF Manipulation Basics
ASP.NET:
High CPU in .NET app using a static Generic.Dictionary
TechNet Edge:
Deploying Silverlight - Why and How
WindowsClient:
Windows Client Developer Roundup for 12/21/2009
Silverlight:
4 Calendars & Plans for 2010 / 5770
ASP.NET:
ASP.NET MVC 2 and Visual Studio 2010
ASP.NET:
Moving your ASP.NET Application to Windows Azure – Part II
Silverlight:
HVP – Core Scaffolding and Updated News
Channel 9:
TWC9: 2009 - The Year in Review
ASP.NET:
Tip#100: Did you know… How to view ASP.NET trace information?
ASP.NET:
Passing anonymous objects to MVC views and accessing them using dynamic
Channel 9:
Channel 9 Live at PDC09: Coding 4 Fun
Channel 9:
Channel 9 Live at PDC09: Stephen Toub
WindowsClient:
Mouse Gestures for Internet Explorer
Channel 9:
Controlling concurrency in Rx
Channel 9:
Dev Tools Ecosystem Summit Videos Available
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online