active questions tagged asp.net-2.0 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T19:29:12Zhttp://stackoverflow.com/feeds/tag/asp.net-2.0http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/469864/updating-a-gridview-based-on-dundas-chart-callback0Updating a gridview based on dundas chart callbackDaud2009-01-22T16:35:06Z2009-12-17T16:11:13Z
<p>I have a dundas pie chart which when clicked issues a client callback which updates another chart associated with it. Basically its like a drill down thing. I also want to update my gridview based on the user's selection of the pie. But since the update of chart is being done using dundas client callback I'm unable to rebind my Gridview. Is there any way to do it? . </p>
http://stackoverflow.com/questions/1839298/gridview-hyperlink-and-description-in-the-same-column-cell0Gridview : Hyperlink and description in the same column cellJohn McNamara2009-12-03T11:18:10Z2009-12-16T19:47:33Z
<p>Hi Guys,</p>
<p>Apologies for the newbie question. My client wishes me to make a small change to the gridview on his <a href="http://www.flogitdonegal.com/SearchPage.aspx" rel="nofollow">http://www.flogitdonegal.com/SearchPage.aspx</a> page.</p>
<p>Note the way the Title column is a hyperlink to view more information. This comes from a 'BriefDescription' field in the database.</p>
<p>How can I add 250 chars from the 'FullDescription' underneath the Title in the same cell, but I dont want it be a hyperlink.</p>
<p>Essentially it will be 2 fields coming into the same column.</p>
<p>Thanks in advance for all help.
John</p>
http://stackoverflow.com/questions/1904162/asp-net-udp-socket-code-works-in-development-but-not-in-production-on-iis1ASP.NET UDP socket code works in development, but not in production on IIS. Ash2009-12-14T23:07:10Z2009-12-16T14:53:54Z
<p>I have the following UDP broadcast listener running as a static component in a seperate thread on an ASP.NET web application. Why I would do this is really, unimportant, but the reason why this wont work when deployed baffles me. I do have several console applications sending UDP broadcasts, and I've coded tested and confirmed this thread and its code working when running under Visual Studio on the VS2005 development web server, but the moment that I compile the code and deploy it to another machine and run it under IIS - it stops working. Furthermore, it doesnt ERROR, it just doesn't work.</p>
<p>The log4net logging also seems to only work in the Init() method, but not the thread (which is weird). But I have added some <code>File.AppendAllText</code>'s to the thread and it DOES seem to be executing, but as far as I can tell, it stops on the line <code>byte[] received = mUdpClient.Receive(ref mGroupEP);</code></p>
<p>I've made sure the port is open and tested in a console app (which works), I've checked permissions, even made the default identity use the Local System user account, but still nothing. I've checked the firewall, checked the event log - nothing. No errors, just not working.</p>
<p>I wondered if it might be somehting to do with IIS shutting down System.Net requests as a security meassure, but I can't find anything that might support that hypothesis.</p>
<pre><code> public class UDPBroadcastListener {
#region Members
private ILogger mLogger = NullLogger.Instance;
private readonly int mPort;
private UdpClient mUdpClient;
private IPEndPoint mGroupEP;
public event EventHandler<GenericEventArgs<byte[]>> Received;
private Thread mThread;
#endregion
public UDPBroadcastListener(int port) {
mPort = port;
}
public void Init() {
try {
Logger.WarnFormat("Setting up the UDP packet listener on port {0}", mPort);
mGroupEP = new IPEndPoint(IPAddress.Any, mPort);
mUdpClient = new UdpClient();
mUdpClient.EnableBroadcast = true;
mUdpClient.Client.SetSocketOption(SocketOptionLevel.Socket,
SocketOptionName.ReuseAddress,
true);
mUdpClient.Client.Bind(mGroupEP);
Logger.InfoFormat("Successfully bound the UDP packet listener to the the port.");
mThread = new Thread(UpdateThread);
mThread.IsBackground = true;
Logger.Info("Starting the background listener thread.");
mThread.Start();
Logger.InfoFormat("Background listener thread started ok.");
} catch (Exception e) {
Logger.Error(e.Message, e);
}
}
public void Close() {
if (mThread != null) {
mThread.Abort();
}
if (mUdpClient != null) {
mUdpClient.Close();
mUdpClient = null;
}
}
public Thread Thread {
get { return mThread; }
}
private void UpdateThread() {
Logger.Info("Listener thread started.");
while (true) {
try {
Logger.Info("Waiting for broadcast");
byte[] received = mUdpClient.Receive(ref mGroupEP);
Logger.InfoFormat("Received {0} bytes", received.Length);
OnReceived(received);
} catch (Exception ex) {
Logger.Error(ex.Message, ex);
}
}
}
protected void OnReceived(byte[] pData) {
EventHandler<GenericEventArgs<byte[]>> handler = Received;
if (handler != null) Received(this, new GenericEventArgs<byte[]>(pData));
}
public virtual ILogger Logger {
get { return mLogger; }
set { mLogger = value; }
}
#region Dispose
private bool mDisposed = false;
public void Dispose() {
if (mDisposed) return;
mDisposed = true;
Close();
}
~UDPBroadcastListener() {
Dispose();
}
#endregion
}
}
</code></pre>
<p>I am now getting extremely desperate. Please help. :(</p>
http://stackoverflow.com/questions/1842644/highlighting-all-user-controls-in-an-asp-net-page0Highlighting all user controls in an ASP.NET pageblueoyster2009-12-03T20:22:17Z2009-12-16T14:17:49Z
<p>Hi,</p>
<p>I want to highlight all user controls used in a page by adding a border around it. We are doing this to facilitate debugging. I could override RenderControl method in user control base class to do that easily but we have lot of user controls(legacy) that are not using base class.</p>
<p>I then took a different approach. I tried traversing page controls in PreRender method of page base class, which is used by all pages, and add a div with border to all user controls. But I found that it is not possible to add or remove from control collection if it contains code blocks (i.e. <% ... %>).</p>
<p>Any suggestions?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1913277/how-can-make-all-url-fully-qualified-when-using-url-rewriting-in-asp-net-1how can make all url fully qualified when using url rewriting (in ASP.NET)mmtemporary2009-12-16T08:58:09Z2009-12-16T08:58:09Z
<p>what can i do in asp.net web site?
<br/>
i.e: path1/path1/abc.aspx convert to <a href="http://www.example.com/path1/path2/abc.aspx" rel="nofollow">http://www.example.com/path1/path2/abc.aspx</a></p>
http://stackoverflow.com/questions/1327442/why-is-my-language-switching-automatically-in-asp-net-2-01Why is my language switching automatically in ASP.NET 2.0?Dommy Zee2009-08-25T10:40:51Z2009-12-16T02:00:03Z
<p>I am working on an ASP.NET 2.0 web solution which currently runs en-GB and zh-HK languages as the 2 current languages for the site. Others will be added at a later date.</p>
<p>One of the requirements is that the user can choose to override the language displayed to another language. Therefore users in Hong Kong can view the site in English and vice versa. </p>
<p>My 2 resource files are</p>
<ul>
<li>Resources.resx (for English - default translations)</li>
<li>Resources.zh-HK.resx (for Chinese)</li>
</ul>
<p>The site performs this logic</p>
<ol>
<li>Load user details</li>
<li>Check if user has overridden the preferred language</li>
<li>If they have, set the Thread.CurrentThread.CurrentUICulture to this language.</li>
<li>If they haven't, use the browsers default.</li>
</ol>
<p>This is implemented in the following code:</p>
<pre><code>//This method is written in a base page, which all pages in the site derive from
protected override void InitializeCulture()
{
User user = /*Load custom user object...*/;
string threadLanguage = Thread.CurrentThread.CurrentUICulture.IetfLanguageTag;
//If the browser is using a different language,
//but the has chosen a preferred language,
//change the CurrentUICulture over.
if (!threadLanguage.Equals(user.Language, StringComparison.OrdinalIgnoreCase))
{
CultureInfo userLanguageCulture = CultureInfo.CreateSpecificCulture(user.Language);
Thread.CurrentThread.CurrentUICulture = userLanguageCulture;
}
base.InitializeCulture();
}
</code></pre>
<p>I have also configured the web.config to pick up the uiCulture automatically with</p>
<pre><code><globalization uiCulture="auto"/>
</code></pre>
<p>For some very very odd reason, some users (even en-GB users) are finding the language is switching over the zh-HK for no reason whatsoever - sometimes between pages! I have added some debugging code to these pages which should reveal more information in the coming days. All it has revealed so far is that users are not necessarily from zh-HK, some are from zh-CN or zh-TW. Although this might help, because en-GB users are seeing zh-HK I think it is just a red herring.</p>
<p>What I have noticed is that the switch over occurs on page content (those inheriting from the base page, which the IntializeCulture() method exists). The custom user controls I have written do not experience this problem and appear in the correct language configured by the user. Therefore a page would have combinations of both English and Chinese content - eek!</p>
<p>Can anyone give guidance as to if I am coding this correctly, or an alternative way of approaching the requirements.</p>
<p>Thanks in advance,</p>
<p>Dominic</p>
<p>P.S. This is an intermittent problem and not a permanent. There seems to be no common action that replicates this issue. It just - happens.</p>
<p>P.P.S Here is an image of the problem in action:</p>
<p><img src="http://lh6.ggpht.com/%5FI13gV%5Fvlrcc/SpPBoawBi9I/AAAAAAAAE6g/s7fMWAiqhhs/s800/sample.png" alt="Web page showing Chinese/English problem" /></p>
<p><hr /></p>
<p>Update 23/09/09:</p>
<p>After trying to change it to Page.Culture, I am still having more intermittent problems.</p>
<p>I have a couple of ideas at why this could possibly be occurring, but am unable to justify my 'hypothesis':</p>
<ul>
<li>We are using IIS 5.0 Isolation Mode, meaning only aspnet_wp.exe is running and not w3wp.exe for each IIS instance.</li>
<li>Reporting Services is also running on the server, generating reports for Hong Kong.</li>
<li>The fault occurs more frequently when the site was under heavy load - I assume due to large reports being generated.</li>
</ul>
<p>Apart from that, I do not know what else could cause the problem. I would show another screenshot, but the problem is identical and did appear in the same place as the previous screenshot showed.</p>
<p>Update 25/09/09:</p>
<p>I think we I might have solved it. In our Web.config, there is a tag that was configured as follows:</p>
<pre><code><globalization uiCulture="auto" culture="auto"/>
</code></pre>
<p>After removing that, after initial testing, it has yet to turn up!</p>
<p>Update 13/10/09:</p>
<p>The problem has turned up again :-(</p>
<p>Update 26/10/09:</p>
<p>It seems that if another user of the site changes their preferred language, it affects all other users on the site! Although their preferred language is set, somehow someone else's language switch affects the other users of the site!</p>
http://stackoverflow.com/questions/1893526/latest-image-upload-asp-net-2-0-applet0latest image upload asp.net 2.0 appletJosmar Azzopardi2009-12-12T14:01:27Z2009-12-15T15:47:39Z
<p>hey everyone,</p>
<p>I use the following coding to show six images from the latest photo album i uploaded picture to. However the images being shown are the 1st six images in the folder (which are the ones the oldest uploaded) not the final six images uploaded.
<strong>Anyone can help me what should i change in the following coding to show the last six images in the folder.</strong> </p>
<pre><code> <%
latestfolder = "na"
latestdate = cdate("01/01/09")
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder(Server.MapPath("images/gallery"))
for each folder in fo.subfolders
if cdate(folder.DateLastModified) > latestdate then
latestdate = cdate(folder.DateLastModified)
latestfolder = folder.name
end if
next
if latestfolder <> "na" then
set fi=fs.GetFolder(Server.MapPath("images/gallery/" & latestfolder))
looptimes = 0
for each file in fi.files
if right(lcase(file.Name),3) = "jpg" then %>
<a href="thumbnail.aspx?picture=<%=server.URLEncode("images/gallery/" & latestfolder & "/" & file.Name)%>&maxWidth=640&maxHeight=480" target="_blank" style="text-decoration:none; cursor:pointer;">
<img src="thumbnail.aspx?picture=<%=server.URLEncode("images/gallery/" & latestfolder & "/" & file.Name)%>&maxWidth=100&maxHeight=60" style="border:1px solid #ffffff; margin:5px; margin-top:14px;"> </a>
<% end if
looptimes = looptimes + 1
if looptimes = 6 then exit for end if
next
end if
%>
</code></pre>
http://stackoverflow.com/questions/1895551/how-to-keep-an-autoincrement-identity-value-without-a-database0How to keep an AutoIncrement/Identity value without a database?Matt Dawdy2009-12-13T04:34:04Z2009-12-13T04:55:02Z
<p>I've received a rush project (asp.net c# framework v2), of course due on Monday morning. It's a very simple project -- add a "Request Quote" page to an existing site. Basically, collect some info and then email someone at the company the contents of the form, and show the user a "Thank You" page. Simple as pie...until I just read the last requirement.</p>
<p>Every form submission is supposed to have a "Confirmation Number", starting with 10000, and each one successively increments the number by one.</p>
<p>Sounds so easy right? Well, I don't have a database in this site. No idea why, I really don't know anything else about the site other than the info I need to fill the requirements.</p>
<p>So, with this in mind, and realizing that this is less than optimal, I guess my only solution is to make a text file (yuck) and read it in, get the last number used, add one, and write that back to the text file. Which of course leaves a lot to be desired in respect to "locking" of the file so I don't get duplicate numbers.</p>
<p>Anyone have any suggestions for me? I'm open to anything at this point...</p>
http://stackoverflow.com/questions/1793228/asp-net-2-0-web-application-and-log4net-adonetappender0ASP.NET 2.0 Web Application and Log4Net AdoNetAppendernickyt2009-11-24T21:59:42Z2009-12-12T00:00:31Z
<p>I've used log4net before, but the last time I used it was in a ASP.NET 1.x application and I've never used the AdoNetAppender. Basically everything appears to be configured properly in my test solution, but nothing gets logged to my db table.</p>
<p>So the application running is an ASP.NET 2.0 WebApplication with AJAX Extensions 1.0 and uses SqlServer 2005 SP3 as the backend.</p>
<p>Here's the setup:
AssemblyInfo.cs has this</p>
<pre><code>// This tells Log4Net to look for a Log4Net.config file in the execution directory,
// in this case, the webroot. This file contains Log4Net configuration settings.
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "Log4Net.config", Watch = true)]
</code></pre>
<p>Default.aspx.cs has this</p>
<pre><code>using System;
using System.Data;
using log4net;
using System.IO;
namespace TestLog4NetInWebApplication
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
//log4net.Config.XmlConfigurator.Configure(new FileInfo(Server.MapPath("~/Log4Net.config")));
log.Error("Hi from test application");
}
//log4net Configuration Attribute is in AssemblyInfo
private readonly static ILog log = LogManager.GetLogger(typeof(_Default));
}
}
</code></pre>
<p>here's my table creation script:</p>
<pre><code>CREATE TABLE [dbo].[Log] (
[Id] [int] IDENTITY (1, 1) NOT NULL,
[Date] [datetime] NOT NULL,
[Thread] [varchar] (255) NOT NULL,
[Level] [varchar] (50) NOT NULL,
[Logger] [varchar] (255) NOT NULL,
[Message] [varchar] (4000) NOT NULL,
[Exception] [varchar] (2000) NULL
)
</code></pre>
<p>and my Log4Net.config file looks like this:</p>
<pre><code><?xml version="1.0"?>
<log4net>
<appender name="AdoNetAppender" type="log4net.Appender.AdoNetAppender">
<bufferSize value="1" />
<threshold value="ALL"/>
<connectionType value="System.Data.SqlClient.SqlConnection, System.Data, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<connectionString value="Data Source=127.0.0.1;Initial Catalog=MyDb;Persist Security Info=True;User ID=user;Password=password" />
<commandText value="INSERT INTO [dbo].[Log]([Date],[Thread],[Level],[Logger],[Message],[Exception]) VALUES (@log_date, @thread, @logLevel, @logger, @message, @exception)" />
<parameter>
<parameterName value="@logDate" />
<dbType value="DateTime" />
<layout type="log4net.Layout.RawTimeStampLayout" />
</parameter>
<parameter>
<parameterName value="@thread" />
<dbType value="String" />
<size value="255" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%thread" />
</layout>
</parameter>
<parameter>
<parameterName value="@logLevel" />
<dbType value="String" />
<size value="50" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%level" />
</layout>
</parameter>
<parameter>
<parameterName value="@logger" />
<dbType value="String" />
<size value="255" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%logger" />
</layout>
</parameter>
<parameter>
<parameterName value="@message" />
<dbType value="String" />
<size value="4000" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%message" />
</layout>
</parameter>
<parameter>
<parameterName value="@exception" />
<dbType value="String" />
<size value="2000" />
<layout type="log4net.Layout.ExceptionLayout" />
</parameter>
</appender>
</log4net>
</code></pre>
<p>And here's my web.config:</p>
<pre><code><?xml version="1.0"?>
<configuration>
<configSections>
<section name="log4net"
type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" requirePermission="false"/>
<sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"/>
<sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
<section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere" />
<section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
<section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication" />
</sectionGroup>
</sectionGroup>
</sectionGroup>
</configSections>
<system.web>
<pages>
<controls>
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</controls>
</pages>
<!--
Set compilation debug="true" to insert debugging
symbols into the compiled page. Because this
affects performance, set this value to true only
during development.
-->
<compilation debug="false">
<assemblies>
<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
</compilation>
<httpHandlers>
<remove verb="*" path="*.asmx"/>
<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
</httpHandlers>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</httpModules>
</system.web>
<system.web.extensions>
<scripting>
<webServices>
<!-- Uncomment this line to customize maxJsonLength and add a custom converter -->
<!--
<jsonSerialization maxJsonLength="500">
<converters>
<add name="ConvertMe" type="Acme.SubAcme.ConvertMeTypeConverter"/>
</converters>
</jsonSerialization>
-->
<!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. -->
<!--
<authenticationService enabled="true" requireSSL = "true|false"/>
-->
<!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved
and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and
writeAccessProperties attributes. -->
<!--
<profileService enabled="true"
readAccessProperties="propertyname1,propertyname2"
writeAccessProperties="propertyname1,propertyname2" />
-->
</webServices>
<!--
<scriptResourceHandler enableCompression="true" enableCaching="true" />
-->
</scripting>
</system.web.extensions>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<modules>
<add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</modules>
<handlers>
<remove name="WebServiceHandlerFactory-Integrated" />
<add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode"
type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode"
type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</handlers>
</system.webServer>
</configuration>
</code></pre>
<p>Am I missing anything? I can't see it being a permission issue as I'm not writing to file so any ideas anyone?</p>
http://stackoverflow.com/questions/1648350/how-to-call-a-clr-stored-procedure-from-codebehind-of-an-aspx-page0How to call a CLR Stored Procedure from codebehind of an aspx page?Himadri2009-10-30T06:42:16Z2009-12-11T15:37:28Z
<p>Hi all</p>
<p>How to call a CLR Stored Procedure from codebehind of an aspx page?</p>
<p>I am using SqlCommand with commandtext as CLR Stored Procedure name and SqlHelper.ExecuteDataSet() as below.</p>
<pre><code>string connectionString = ConfigurationManager.AppSettings["ConnectDB"];
SqlConnection sn = new SqlConnection(connectionString);
SqlParameter[] sqlParameters = new SqlParameter[1];
sqlParameters[0] = new SqlParameter("@query", SqlDbType.Int);
sqlParameters[0].Value = "SELECT * FROM Inventory";
DataSet ds=new DataSet();
try
{
ds = SqlHelper.ExecuteDataset(sn, "[dbo].[prc_clr]", sqlParameters);
}
catch (Exception ex)
{
throw;
}
</code></pre>
<p>But I am getting exception "The stored procedure '[dbo].[prc_clr]' doesn't exist.".</p>
<p>Please help.</p>
http://stackoverflow.com/questions/1787949/what-is-the-best-procedure-to-implement-paging-in-a-gridview-considering-size-of1What is the best procedure to implement paging in a gridview considering size of Record ?Himadri2009-11-24T05:16:23Z2009-12-10T15:20:25Z
<p>Hi all,</p>
<p>I have a table in sq server db having more than 1 million rows.
I need to show those data in a gridview with pagination in an asp.net page.</p>
<p>Since the record amount is larger I need to boost performance of the page for showing data, implementing pagination.</p>
<p>What procedure should I follow to implement pagination?</p>
<p>Please help.</p>
http://stackoverflow.com/questions/1412403/how-do-you-extend-the-membershipuser-class0How do you extend the MembershipUser class?donde2009-09-11T17:58:30Z2009-12-10T07:00:04Z
<p>I want the class inheritance to look like this...</p>
<p>Person -> MembershipUser -> User</p>
<p>Person & User are my own classes. What is the syntax in ASP.NET 2.0 for MembershipUser to inherit my Person class. If I have to create a new class that first inherits MembershipUser, then I have the problem of double inheritance.</p>
http://stackoverflow.com/questions/1878648/identifying-the-download-status-of-a-file-in-web-application0Identifying the download status of a file in web applicationadamantium2009-12-10T04:31:51Z2009-12-10T05:38:39Z
<p>Hi,</p>
<p>I am developing a web application in .Net 2005 in C#. Here there is a provision that allows the user to download the file from our server which will be mostly <strong><em>.doc</em></strong> files. So I am using <code>Response.TransmitFile</code> and <code>content-disposition</code> header method to write the file to the client.</p>
<p>My current requirement is to identify the status of the file being downloaded. If the file download is success/ failure then I have to show a status message in my web page. </p>
<p>I am not aware of any method that can do this kind of action in ASP.Net. So any help would be appreciated. The main problem is that the user can use any external Download Manager tools to do the download process and he can close my application from his browser and continue the download process at a later time.</p>
<p><strong><em>Edit</em></strong></p>
<p><em>Success</em> in the sense that I have to identify whether all the bytes were downloaded or not.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1877051/asp-2-0-and-partial-classes1ASP 2.0 and partial classesEgor2009-12-09T21:34:38Z2009-12-09T21:45:29Z
<p>One of our contractors gave us an ASP.NET 2.0 web site and I'm having a little trouble integrating it into our process. He gave us the project as a zipped directory, no solution file or anything. I can open it in Visual Studio using the Open -> Website option, and the website runs. However, I wanted to set it up as a web application project so that I could add project references to our shared libraries instead of them being linked into the 'bin' directory, and just because I'd prefer to have a regular project really. </p>
<p>I'm running into a weird issue. Let me extract a little code:</p>
<p>HeaderControl.ascx</p>
<pre><code><%@ Control Language="C#" AutoEventWireup="true" CodeFile="HeaderControl.ascx.cs" Inherits="Controls_WebUserControl" %>
</code></pre>
<p>HeaderControl.ascx.cs</p>
<pre><code>public partial class Controls_WebUserControl : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
</code></pre>
<p>Ok, this is a little strange but it seems to be legal at least. The base class has a partial definition in the code-behind (code file?). But then many other controls are defined in the same way, eg</p>
<p>SomeControl.ascx</p>
<pre><code><%@ Control Language="C#" AutoEventWireup="true" CodeFile="SomeControl.ascx.cs" Inherits="Controls_WebUserControl" %>
</code></pre>
<p>SomeControl.ascx.cs</p>
<pre><code>public partial class Controls_WebUserControl : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
</code></pre>
<p>Expectedly, when I try to build my new web application project that I've transferred the files into I get a bunch of errors about the same method being defined in serveral places. I don't understand why it's not set up with a code behind defining a partial definition of the control class and overriding methods of the base class, but that's sort of beside the point. </p>
<p>What really gets me is this: How does the original work? It runs and it works, so the compiler must be doing something that I don't understand. What happens to the Controls_WebUserControl class?</p>
http://stackoverflow.com/questions/1822567/asp-net-httpcontext-cache-why-do-i-read-null-when-someone-else-says0ASP.Net HttpContext Cache-- why do I read Null when someone else says ""?larryq2009-11-30T21:36:07Z2009-12-09T18:14:49Z
<p>I have a coworker who's written the following line in the page load method in an aspx page:</p>
<pre><code>myDataSet = (DataSet)HttpContext.Current.Cache["dataset"];
</code></pre>
<p>The first time I hit the page <code>HttpContext.Current.Cache["dataset"]</code> reads null. When he does it, the value is "" (<code>string.Empty</code>) and he gets a cast exception.</p>
<p>We're both running ASP.Net 2.0 on our development machines, he's cleared his browser cache and run an iisreset, yet that thing still reads "" the first time he hits the page. Does anyone have ideas on what we can check to explain this discrepancy?</p>
http://stackoverflow.com/questions/1791812/system-out-of-memory-exception-in-production-server0System Out Of Memory Exception in Production ServerSachin Gupta2009-11-24T17:56:36Z2009-12-08T18:05:48Z
<p>We have .net application installed on production server. It is using .net FrameWork 3.0 on windows server 2003 with RAM 4 GB.
But there is a problem in application while running sometimes it throws system out of memory exception. I am very frustrating with this. Also I am unable to simulate the issue. I had checked all the possibilities which can cause the problem but didn’t get any thing which solve the issue </p>
<p>I checked on production server event log found the Out Of Memory Exception also INVALID VIEW STATE logs are there.
Look at the following event log which may help to find solutions. </p>
<pre>
Exception information:
Exception type: HttpException
Exception message: Invalid viewstate.
Request information:
Request path: /zContest/ScriptResource.axd
User: LisaA
Is authenticated: True
Authentication Type: Forms
Thread information:
Thread ID: 10
Is impersonating: True
Stack trace: at System.Web.UI.Page.DecryptStringWithIV(String s, IVType ivType)
at System.Web.UI.Page.DecryptString(String s)
at System.Web.Handlers.ScriptResourceHandler.DecryptParameter(NameValueCollection queryString)
at System.Web.Handlers.ScriptResourceHandler.ProcessRequestInternal(HttpResponse response, NameValueCollection queryString, VirtualFileReader fileReader)
at System.Web.Handlers.ScriptResourceHandler.ProcessRequest(HttpContext context)
at System.Web.Handlers.ScriptResourceHandler.System.Web.IHttpHandler.ProcessRequest(HttpContext context)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------
Event code: 3005
Event message: An unhandled exception has occurred.
Process information:
Process ID: 5388
Process name: w3wp.exe
Exception information:
Exception type: OutOfMemoryException
Exception message: Exception of type 'System.OutOfMemoryException' was thrown.
------------------------------------------------------ ------------------------------------------------------------------------------------------------------------------------------------------------------------------
</pre>
<p>Please help me out on this</p>
http://stackoverflow.com/questions/1865180/styles-in-datalist-control0Styles in dataList controlSevina2009-12-08T07:12:29Z2009-12-08T08:20:46Z
<p>In the ItemDataBound handle i set backgroud color to some items:</p>
<pre><code>protected void MyDataList_ItemDataBound(object sender, DataListItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
{
TextBox cellTextBox = (TextBox)e.Item.FindControl("CellTextBox");
if (...)
{
e.Item.BackColor = Color.LightSkyBlue;
cellTextBox.BackColor = Color.LightSkyBlue;
}
}
}
</code></pre>
<p>But after postback (when DataBind for MyDataList doesn't call) color of the inner textBox is same, but color of entire item resets. What is the correct way to set the color for the entire item?</p>
http://stackoverflow.com/questions/1864322/remove-anchor-on-postback2Remove anchor on postbackAequitarum Custos2009-12-08T03:07:58Z2009-12-08T03:19:34Z
<p>Opposite of this question: <a href="http://stackoverflow.com/questions/793208/retain-anchor-after-postback-in-asp-net">Retain anchor after postback in asp.net</a></p>
<p>I'm having the issue that on postback, it's keeping an anchor.</p>
<p>I'm starting in Browse.aspx; user clicks something which takes them to an anchor on the page. They then choose a new filter from DropDownList, so it refreshes back to page 1 with the filter in place, but the anchor stays in the url causing them to jump down the page.</p>
<p>I tried added PostBackUrl="~/Browse.aspx" attribute to the DropDownList to no avail.</p>
<p>Any ideas?</p>
<p>Note, I'm sending them to the anchor with he following method in code behind:</p>
<pre><code> RegisterStartupScript("navigateto", "<script type='text/javascript'>document.location.href='#photo1';</script>");
</code></pre>
http://stackoverflow.com/questions/362907/is-roles-isuserinrole-behaving-as-expected-in-the-following-simple-scenario2Is Roles.IsUserInRole behaving as expected in the following simple scenario?J c2008-12-12T14:28:33Z2009-12-07T14:17:33Z
<p>In a custom role provider (inheriting from RoleProvider) in .NET 2.0, the IsUserInRole method has been hard-coded to always return true:</p>
<pre><code>public override bool IsUserInRole(string username, string roleName) { return true; }
</code></pre>
<p>In an ASP.NET application configured to use this role provider, the following code returns true (as expected):</p>
<pre><code>Roles.IsUserInRole("any username", "any rolename"); // results in true
</code></pre>
<p>However, the following code returns false:</p>
<pre><code>Roles.IsUserInRole("any rolename"); // results in false
</code></pre>
<p>Note that User.IsInRole("any rolename") is also returning false.</p>
<ol>
<li>Is this the expected behavior?</li>
<li>Is it incorrect to assume that the overload that only takes a role name would still be invoking the overridden IsUserInRole?</li>
</ol>
<p><strong>Update</strong>: Note that there doesn't seem to be an override available for the version that takes a single string, which has led to my assumption in #2.</p>
http://stackoverflow.com/questions/1848342/allowing-partially-trusted-callers-security-exception-is-been-thrown-althought-ru0Allowing partially trusted callers security exception is been thrown althought running on Full trust modeTal2009-12-04T17:05:09Z2009-12-06T12:07:20Z
<p>Hey,</p>
<p>While developing using ASP.net 2.0 (C#) and NHibernate 2.1.0
I am getting the error:</p>
<pre><code>System.TypeInitializationException: The type initializer for 'NHibernate.ByteCode.LinFu.ProxyFactory' threw an exception. ---> System.Security.SecurityException: That assembly does not allow partially trusted callers.
</code></pre>
<p>This error is been thrown <strong>only</strong> in the production server (a web hosting company) and in my development environment everything is fine.</p>
<p>I also ran this code below on the production server to see the Code Access Security (CAS) level and got <strong>True</strong> from:</p>
<pre><code>System.Security.SecurityManager.IsGranted(new AspNetHostingPermission(AspNetHostingPermissionLevel.Unrestricted))
</code></pre>
<p>so I can assume I am currently running in a full trusted mode..</p>
<p>After reading some articles about this kind of problem (not specifically for NHibernate)
I understood that I need to add</p>
<pre><code>[assembly: AllowPartiallyTrustedCallers()]
</code></pre>
<p>to my AssebmlyInfo.cs file.</p>
<p>My question is:
Is there a way to solve this exception without having to edit the <strong>NHibernate.ByteCode.LinFu.dll</strong>'s AssmeblyInfo.cs ? Is there something that can be configured in the web.config to allow this kind of action?</p>
<p>Thanks,</p>
<p>Tal.</p>
http://stackoverflow.com/questions/1332059/how-to-force-page-validation-on-pageload0How to force page validation on Page_load.Tim2009-08-26T02:23:21Z2009-12-06T09:59:59Z
<p>I have a situation where i need the validators to fire on a page when it is loaded. But when i run Page.Validate(); the validators are not fired. I here this is because you cant do validation this early. Is there away around this?</p>
http://stackoverflow.com/questions/568837/caching-a-user-control-in-asp-net0Caching a user control in ASP.NET ??Prashant2009-02-20T09:15:36Z2009-12-06T05:21:40Z
<p>I have created a user control in my application "header.ascx", I am pasing a selectedMenu attribute to this control on which the control selects the selectedMenu value specified. Suppose, I have passed value "home" or "search" then it will select (highlight it) the search menu.</p>
<p>I want to cache this control, When the value of the selectedMenu attribute changes then only the cache will be refreshed else it should picks up the control from cache??</p>
<p>Is it possible to cache a user control in asp.net?? I am using ASP.NET 2.0 (C#)</p>
http://stackoverflow.com/questions/1847366/latest-images-uploaded-coding-problem0Latest images uploaded coding problemJosmar Azzopardi2009-12-04T14:41:30Z2009-12-04T15:11:57Z
<p>Hey,</p>
<p>anyone could help me understand the following asp.net 2.0 coding?
It is supposed to show me a couple of the latest photos i uploaded to a particular folder in the photoalbum.
however when i upload a new file in an folder which already has images... the images that show up when using the code is the first images in this folder...
and sometimes nothing shows up...</p>
<pre><code><%
latestfolder = "na"
latestdate = cdate("01/01/09")
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder(Server.MapPath("images/gallery"))
for each folder in fo.subfolders
if cdate(folder.DateLastModified) > latestdate then
latestdate = cdate(folder.DateLastModified)
latestfolder = folder.name
end if
next
if latestfolder <> "na" then
set fi=fs.GetFolder(Server.MapPath("images/gallery/" & latestfolder))
looptimes = 0
for each file in fi.files
if month(file.DateLastModified) = month(latestdate) then
if right(lcase(file.Name),3) = "jpg" then %>
<a href="thumbnail.aspx?picture=<%=server.URLEncode("images/gallery/" & latestfolder & "/" & file.Name)%>&maxWidth=640&maxHeight=480" target="_blank" style="text-decoration:none; cursor:pointer;">
<img src="thumbnail.aspx?picture=<%=server.URLEncode("images/gallery/" & latestfolder & "/" & file.Name)%>&maxWidth=100&maxHeight=60" style="border:1px solid #ffffff; margin:5px; margin-top:14px;">
</a>
<% end if
end if
looptimes = looptimes + 1
if looptimes = 6 then exit for end if
next
end if
%>
</code></pre>
<p>hope some can help me :)</p>
http://stackoverflow.com/questions/564443/excel-dll-for-microsoft-office-interop-excel0Excel dll for Microsoft.Office.Interop.ExcelLea Cohen2009-02-19T08:55:14Z2009-12-03T21:28:39Z
<p>We want to use Microsoft.Office.Interop.Excel in our web application. Everything works fine on our local machines, but on our test machine we're running into problems. It has neither Visual Studio nor Office installed on it.<br />
We're using .NET framework 2.0 and the server is running on Windows Server 2003 with IIS6. </p>
<p>Is there a dll that needs to be installed on the machine or added to the bin of the web application?</p>
http://stackoverflow.com/questions/1827501/how-can-i-set-information-on-a-cell-in-a-datagrid-based-on-its-header-or-column1How can I set information on a cell in a datagrid based on its header or column?Brisbe422009-12-01T16:55:02Z2009-12-02T23:31:39Z
<p>I have an ASP.NET 2.0 DataGrid, like so:</p>
<pre><code><asp:DataGrid
runat="server"
ID="_customerTable"
CssClass="gridDisplay"
HeaderStyle-CssClass="headerRow"
AutoGenerateColumns="False"
>
<Columns>
<asp:TemplateColumn HeaderText="First Name">
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "FirstName") %>
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn HeaderText="Last Name">
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "LastName") %>
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn HeaderText="Address 1">
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "Address1") %>
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn HeaderText="Address 2">
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "Address2") %>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:DataGrid>
</code></pre>
<p>The problem is, I need to set up a cssclass for cells that meet certain criteria in a column. The best I can seem to figure out is a rather ugly method--either specifically doing e.Item.Cells[0]...[3] for each column, or setting ItemStyle-CssClass="firstName"..."address2", and then updating the cssclass for a cell based on my conditions and whether or not the cell's cssclass matches.</p>
<p>This seems like a really ugly solution, though, so I'd far prefer any advice on a better way--if one exists.</p>
http://stackoverflow.com/questions/1827841/asp-net-compile-time-xml-dataset-checks0ASP.net Compile time XML/dataset checksJimbo2009-12-01T18:01:37Z2009-12-01T20:08:44Z
<p>I would like an automated way to run compile time checks on datasets (or any xml) to make sure that expected values are found for certain properties. I have a fairly complex dataset in my asp.net Web Site. After modifying a query Visual Studio regenerates the tableadapter object and returns many properties to their default values. This isn't a problem during initial development because I know what the values need to be set to but this will not be the case during future maintenance. An example:</p>
<ul>
<li>A query that performs an insert and then selects SCOPE_IDENTITY needs the ExecuteMode property to be set to Scalar; not Reader or NonQuery.
</li>
</ul>
<p>I would like the build process to fail if this property is set to anything but Scalar. The relevant xml path in the xsd is:</p>
<pre><code><xs:schema>
<xs:annotation>
<xs:appinfo>
<DataSource>
<Tables>
<TableAdapter Name="TheTable">
<Sources>
<DbSource QueryType="Scalar">
</code></pre>
http://stackoverflow.com/questions/351804/jquery-script-not-working-after-postback-even-with-pageload0jquery script not working after postback even with pageLoadXabatcha2008-12-09T04:44:03Z2009-12-01T17:24:28Z
<p>Hi all,
I've got some trouble with JQuery script on my Asp.net page. During first load it works well, after postback it does not. Initiali I thought that it is because script is not load again, but alert told me that script runs as I use function pageLoad() instead of $(document).ready(function().
In script I just read value from one textarea and set the lenght value to next text input. I am putting script into page like this:<br />
<script type="text/javascript" src="../js/smsanywhere.js"></script><br />
I tried to place directly into page, but there is no difference I guess.</p>
<p>The script is shown below.</p>
<pre><code>function pageLoad()
{
alert('pageLoad is there');
var textBox = "textarea[id*='txtMessage']";
var counterBox = "input[id*='txtCharLeft']";
$(textBox).keydown(function(){
alert(this);
var length = 70 - $(this).val().length;
$(counterBox).val(length);
$(counterBox).attr("style",function(){
return "width:30px;" + (length < 0 ? "background-color:Red;" : "");
});
});
}
</code></pre>
<p>I dont use any ajax at this page, its just master page , content page and jquery.</p>
<p>What am I missing...</p>
http://stackoverflow.com/questions/440675/compile-error-cs0433-on-pre-compiled-asp-net-2-0-site2Compile Error CS0433 on pre-compiled ASP.NET 2.0 site.LarryF2009-01-13T20:31:38Z2009-11-29T17:41:22Z
<p>I keep getting this error ever so often when I launch the debugger to debug my site. I'm using the Telerik controls, and usually the error is in my tab strip. Here is an example of the error I'm looking at right now:</p>
<pre><code>Compiler Error Message: CS0433: The type 'ASP.controls_motorvehiclegeneral_ascx' exists in both 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_6wlqh1iy.dll' and 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_ro_sgchs.dll'
Source Error:
Line 48: </telerik:RadTabStrip>
Line 49: <telerik:RadMultiPage ID="RadMultiPageControls" Runat="server" SelectedIndex="0">
Line 50: <telerik:RadPageView ID="PageGeneral" runat="server"><uc1:General ID="GeneralControl" runat="server" /></telerik:RadPageView>
Line 51: <telerik:RadPageView ID="PageVehicle" runat="server"><uc1:VehicleList ID="VehicleList" runat="server" /></telerik:RadPageView>
Line 52: <telerik:RadPageView ID="PagePerson" runat="server"><uc1:PersonList ID="PersonList" runat="server" /></telerik:RadPageView>
</code></pre>
<p>The thing that bothers me most, is if I just keep hitting F5, the page WILL refresh and work as it should. Sometimes it takes several refreshes to do this, others it happens pretty quick. I have not been able to find a solution on the net, as most of the people with this error are upgrading from VS2005 to Web Application, and thus the fix seems to be "Remove your app_code directory, and change the CodeFile= to CodeBehind=. But, the CodeBehind is old, and not used anymore. </p>
<p>In this instance, I'm getting the error on my General tab, but it can happen of ANY of my user controls when it DOES happen. </p>
<p>Has anyone else seen this with pre-compiled pages? I'm using VS2008 SP1. </p>
<p>The other effect I've seen related to this is when I have a GridView setup with a datasource, and the datasource changes, but the page does not update until several other operations, then all at once all the data is filled in... This makes me think there is some sort of cache issue, or compile-time, time-out or something...</p>
<p>I am using a site.master page, and have checked the @Page and @Master directrives... Just for the sake of arguement, here are the compiler options it's using...</p>
<pre>
C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE> "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe" /t:library /utf8output /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\6614ff9a\005164fc_423cc801\PetersDatePackage.DLL" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.IdentityModel\3.0.0.0__b77a5c561934e089\System.IdentityModel.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\Microsoft.ReportViewer.Common\9.0.0.0__b03f5f7f11d50a3a\Microsoft.ReportViewer.Common.dll" /R:"C:\WINDOWS\assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_0-em44qa.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_6wlqh1iy.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_ro_sgchs.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\Microsoft.Build.Utilities\2.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.ServiceModel\3.0.0.0__b77a5c561934e089\System.ServiceModel.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\6fe979bb\0056bc44_4b94c701\Microsoft.Practices.EnterpriseLibrary.Common.DLL" /R:"C:\WINDOWS\assembly\GAC_32\System.Web\2.0.0.0__b03f5f7f11d50a3a\System.Web.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\ad70f8ed\0010f920_4b94c701\Microsoft.Practices.EnterpriseLibrary.Data.DLL" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.ServiceModel.Web\3.5.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\d61e8194\009ae0bd_854ec901\Telerik.Web.UI.DLL" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\98ba2ae7\211fb135_e674c901\CoreAPI.DLL" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Web.Extensions\1.0.61025.0__31bf3856ad364e35\System.Web.Extensions.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Management\2.0.0.0__b03f5f7f11d50a3a\System.Management.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\62fa267e\9888875e_bb5cc901\AjaxControlToolkit.DLL" /R:"C:\WINDOWS\assembly\GAC_MSIL\Microsoft.Build.Framework\2.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Code.nufffrfb.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Web.Services\2.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\52f6447d\f90fd1c8_b475c901\StatisticsAPI.DLL" /R:"C:\WINDOWS\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\955f38e7\982cdc0f_bc5cc901\Validators.DLL" /R:"C:\WINDOWS\assembly\GAC_MSIL\Microsoft.ReportViewer.WebForms\9.0.0.0__b03f5f7f11d50a3a\Microsoft.ReportViewer.WebForms.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Runtime.Serialization\3.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_nv7t8gs_.dll" /R:"C:\WINDOWS\assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Design\2.0.0.0__b03f5f7f11d50a3a\System.Design.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.WorkflowServices\3.5.0.0__31bf3856ad364e35\System.WorkflowServices.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Web.Mobile\2.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\assembly\dl3\a5daf5e0\0071b5e7_909cc701\Microsoft.Practices.ObjectBuilder.DLL" /R:"C:\WINDOWS\assembly\GAC_MSIL\Microsoft.ReportViewer.ProcessingObjectModel\9.0.0.0__b03f5f7f11d50a3a\Microsoft.ReportViewer.ProcessingObjectModel.dll" /R:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_atcckswk.dll" /R:"C:\WINDOWS\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll" /out:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_zva2jsmk.dll" /D:DEBUG /debug+ /optimize- /win32res:"c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\zva2jsmk.res" /nowarn:1659;1699;1701 /d:DBCONVERTPUBLIC;CRYSTALSUPPORT "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_zva2jsmk.0.cs" "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_zva2jsmk.1.cs" "c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\statisticsweb\30c716d3\eebad209\App_Web_zva2jsmk.2.cs"
</pre>
<p>Anyone have any ideas where I can even start to look?</p>
http://stackoverflow.com/questions/1799998/want-to-use-image-in-datagrid-to-show-active-and-inactive-user1Want to use image in datagrid to show active and inactive user?Sikender2009-11-25T21:15:35Z2009-11-26T07:16:16Z
<p>i have a database of country table. sql 2005 like,</p>
<pre><code>country_id country_name region area population gdp status
84 indi asia 3432 3423 343 Active
85 U.k Europe 43432 3243 2343 Inactive
</code></pre>
<p>I want to user image of active and inactive instead of text in my datagrid .. not in database.. in database there is text only..</p>
<p>so.. i am using .net 2005 .. i want to bind image with status.. and whenever i changed active to inactive or inactive to active.. image will be change . according that.. </p>
<p>i am using C# as code behind language.. </p>
http://stackoverflow.com/questions/862095/changing-the-datetimemode-of-a-few-columns-in-a-dataset-after-it-has-been-populat0Changing the DateTimeMode of a few columns in a dataset after it has been populated with dataRashmi Pandit2009-05-14T08:00:42Z2009-11-25T10:00:03Z
<p>Hi, I need to change the DateTimeMode of some columns in an already populated dataset. (I don't want to change it before it gets populated as it would mean making changes in several methods throughtout the application.)</p>
<p>Here's the stmt I am using (for a single column):</p>
<pre><code>copy.Tables[0].Columns["DateColName"].DateTimeMode = DataSetDateTime.Utc;
</code></pre>
<p>However, it throws an error that you can't change the DateTimeMode if the dataset contains data. So the solution I am thinking is creating a clone of the dataset, changing the DateTimeMode of required columns and then re-loading data back.</p>
<pre><code>DataSet copy = dsdata.Clone();
copy.Tables[0].Columns["DateColName"].DateTimeMode = DataSetDateTime.Utc;
copy.Load(dsdata.CreateDataReader(), LoadOption.OverwriteChanges, "TableName");
</code></pre>
<p>Is there a better way of doing this??</p>