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:276158
More Search Options
RSS Available
Matching Posts
Re: mscorlib errors
Don't get hung up on mscorlib. You are calling a function in your own code that is in error. In the Forums_Thread.DataBind() there is a bad indexer call. You should typically walk up the stack trace to find your code. Even if the code is throwing an exception from the .net code, especially mscorlib, you are doing something wrong, sending a bad input to it or something.
Posted to
Web Forms
(Forum)
by
billrob458
on 6/4/2008
Re: mscorlib errors
The mscorlib call is coming from somewhere else. You will need the stack trace to fully diagnose this error.
Posted to
Web Forms
(Forum)
by
billrob458
on 6/4/2008
Re: mscorlib errors
You will need to capture the stack trace so you can see where the calls are coming from. Also if you are doing custom error logging, you might consider adding the UserAgent string to your log. This will help identify bots or even PS3's.
Posted to
Web Forms
(Forum)
by
billrob458
on 6/4/2008
Re: Assign DropDownList Item to Int Variable
Rather than grab the value, you will need to grab the .Text property. int maxYear = Int32.Parse( myDDL.SelectedItem.Text ); or int maxYear = Int32.Parse( myDDL.Items[0].Text );
Posted to
Web Forms
(Forum)
by
billrob458
on 6/4/2008
Re: Remove quotes from hard-coded value sql syntax
Have you tried removing them from the string building you are doing? SELECT " & FromFieldDate & " As DateFrom
Posted to
Oracle
(Forum)
by
billrob458
on 6/4/2008
Re: Assign DropDownList Item to Int Variable
You will need to convert between strings and integers. //to set the value myDDL.SelectedValue = yearmax.ToString(); //to pull the selected value from the DDL int yearMax = Int32.Parse( myDDL.SelectedValue );
Posted to
Web Forms
(Forum)
by
billrob458
on 6/4/2008
Re: Http Handler - Passing Parameter
Correct, that serves as the same as a querystring parameter.
Posted to
Getting Started
(Forum)
by
billrob458
on 10/31/2007
Re: Http Handler - Passing Parameter
No, the only way to get a parameter to a http handler from the client is either through querystrings or perhaps through setting a session variable on the initial page request and then looking for that value when you process the HttpHandler request.
Posted to
Getting Started
(Forum)
by
billrob458
on 10/31/2007
Re: Threading Problems
There is not an equivalent for webforms. It is the nature of the web disconnected model. You will need to use ajax webmethod/pagemethods to accomplish the same thing.
Posted to
Visual Basic .NET
(Forum)
by
billrob458
on 10/16/2007
Re: Threading Problems
You can't use background thread operations on a WebRequest to update the UI. For the most part, processing a webrequest is a one pass operation. The client sends the request to the server, the server processes the page through the lifecycle and then release the request sending the response back. If you have a long running operation for a webrequest, you will need a more creative solution to keep from blocking the webrequest while the background operation completes. The MS Ajax library is chock
Posted to
Visual Basic .NET
(Forum)
by
billrob458
on 9/23/2007
Page 1 of 68 (671 items) 1
2
3
4
5
Next >
...
Last »
Channel 9:
TWC9: XAML tools, Silverlight for Live Writer, Surface SDK,
Channel 9:
C9 Conversations: Brian Beckman on Complexity [C9 Conversations: Brian Beckman on Complexity]
Channel 10:
Black Friday Deals on Windows 7 Machines
Channel 10:
Holiday Shopping on Bing Cashback = Big Online Savings
Channel 10:
Black Friday Deals at the Microsoft Store
Channel 10:
Incredible Black Friday Deal: Windows 7 Notebook for $197
ASP.NET:
Presenting in Europe Next Week
TechNet Edge:
AlignIT IT Manager Podcast #30 - Straight Talk about Windows 7
WindowsClient:
You know your post rate has gone down...
Silverlight:
Geek Profiles – Scott Guthrie
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 9 of 13
TechNet Edge:
Managing Your Virtual World - Tech Focus November 2009 Part 2
ASP.NET:
Silverlight and RIA Services: Implementing Search
Channel 9:
C9 Lectures: Brian Beckman - Covariance and Contravariance in Physics 1 of 1
Channel 9:
Set Your Data Free
Channel 9:
Implementing a Silverlight SharePoint WebPart with Visual Studio 2010
WindowsClient:
New WPF Showcase Addition: Enterprise
Channel 9:
Reactive Extensions API in depth: Contract
WindowsClient:
Concluding "New WPF Features" Series
WindowsClient:
Introduction to TestApi – Part 5: Managed Code Fault Injection APIs
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online