active questions tagged asp - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T01:32:47Zhttp://stackoverflow.com/feeds/tag/asphttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1937089/visual-studio-2008-hangs-when-running-azure-projects0Visual Studio 2008 hangs when running Azure projectsKhash2009-12-20T21:20:37Z2009-12-20T21:20:37Z
<p>My ASP MVC Web project runs and debugs without any issues in VS2008SP1 (.NET 3.5 SP1). However when I run the Azure project that refers to the same Web project as a Web Role, although it runs without issues, I can't go back to Visual Studio when I'm done. </p>
<p>It seems as if VS is waiting for a modal form to close (I get the "bing" sound in such cases) and VS doesn't appear in the list of Apps when I Alt-Tab.</p>
<p>I have tried stopping the app in Development Fabric and it shuts down the application but VS doesn't come back and I have to kill the process from Task Manager.</p>
<p>I haven't tried this on other environments but my environment is: Windows 7 64bit, VS 2008 SP1, .NET 3.5 SP1 and I don't have any VS 2010 versions installed on this box.</p>
<p>Any help is appreciated.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1927397/getting-empty-recordset-for-a-particular-column-during-code-run0Getting empty recordset for a particular column during code runsugar2009-12-18T10:20:52Z2009-12-20T13:37:18Z
<p>Hi,</p>
<p>I am using an Inline SQL statement Select * from table where column='' in classic asp application. This is a dynamic sql. Based on the return values in the recordset I am displaying some fields like checkboxes and text boxes. But this is working only if I put a breakpoint in specific / anywhere in the code file. while the code is running without any breakpoints actual results is not coming out.</p>
http://stackoverflow.com/questions/945034/oracle-adds-null-byte-ascii-0-to-varchar2-string0Oracle adds NULL Byte (ASCII: 0) to varchar2 stringTim Lowes2009-06-03T14:19:04Z2009-12-19T23:00:01Z
<p>I've run into an odd problem with a legacy ASP application that uses Oracle 9i as its database. We recently had the DBA increase the size of a VARCHAR2 field from VARCHAR2(2000) to VARCHAR2(4000). The problem is that a NULL byte (ASCII: 0) is inserted into the 2001 character position in the string even if the string inserted is larger than 2000 characters. For example, if the application inserts a new record into the table with a string of 2500 characters, then 2501 characters are stored in the VARCHAR2 field and the NULL byte is inserted at the 2001 character position. The NULL byte is not part of the original posted data that was saved to the database and is causing us some grief. Have any of you ever come across something like this? The application is using the MSDAORA ODBC driver and I'm thinking that the driver is adding the terminating NULL character to its string buffer which <em>may</em> have a internal limit of 2000 characters.</p>
<p>Any ideas?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1924526/jquery-flot-and-a-database1jquery Flot and a Databasesuggy19822009-12-17T20:54:21Z2009-12-19T09:23:00Z
<p>I have downloaded the <a href="http://code.google.com/p/flot/" rel="nofollow">Flot library</a> and have been having a play around.</p>
<p>I understand how the Flot library works and how to draw simple graphs. The bit I am struggling with is pulling data from a DB and passing that into a Flot Graph so that the graph then becomes dynamic depending on the data retrieved. </p>
<p>I believe you can pass data from a DB into a Flot Graph using a JSON function, but I don't know where to start, could anyone help me please? Any sample code or advice would be much appreciated</p>
<p>I am using classic ASP to pull the data from the DB.</p>
http://stackoverflow.com/questions/1932388/how-check-current-date-is-greater-than-end-date0How check current date is greater than end date ?Alex2009-12-19T08:52:31Z2009-12-19T09:12:53Z
<p>hi,</p>
<p>In my asp page, i write code like this for checking date validation</p>
<pre><code><%
'Session 1
session.lcid=2057
Session("CheckIn")= "26/12/2009"
d=0
response.write session("CheckIn")&"----"&DateAdd("d",d,Session("CheckIn")) &"<br/>"
if session("CheckIn")= DateAdd("d",d,Session("CheckIn")) then
response.write "Session 1 is workings"
end if
'Session 2
a ="26/12/2009"
b ="26/12/2009"
if a=b then
response.write "Session 2 is workings"
end if
%>
</code></pre>
<p>In the <strong>session 1</strong> "if" condition is not working.
But if i write date in string format in <strong>session 2</strong>, "IF" condition is working.</p>
<p>How i check "IF" condition in <strong>Session 1</strong> in my classic asp page</p>
<p>hoping your response,</p>
http://stackoverflow.com/questions/1931740/comma-delimit-javascript-asp-line0comma delimit javascript/asp lineflavour4042009-12-19T02:26:47Z2009-12-19T02:47:53Z
<p>Hi,</p>
<p>What is the correct way to comma delimit this line, I keep getting javascript errors:</p>
<pre><code><a href="javascript:doSubmit(<%= pound & rs("AdvertiserID")%>, <%=rs("AdvertiserName")%>)">
</code></pre>
<p>Its Friday, what can I say...</p>
<p>The <%=rs("AdvertiserName")%>) can have single quotes in it, such as Dillard's and needs to be delimited, how would I add them? so I would end up with doSubmit(5432, "Dillard's")?</p>
<p>Thanks, R.</p>
http://stackoverflow.com/questions/456807/asp-mvc-cookies-not-persisting0ASP MVC Cookies not persistingCraig2009-01-19T07:38:16Z2009-12-18T22:50:08Z
<p>I have a ASP MVC App with some seemingly simple code to save and retrieve cookies but for some reason they won't persist. The code in the controller is :</p>
<pre><code>if (System.Web.HttpContext.Current.Response.Cookies["CountryPreference"] == null)
{
HttpCookie cookie = new HttpCookie("CountryPreference");
cookie.Value = country;
cookie.Expires = DateTime.Now.AddYears(1);
System.Web.HttpContext.Current.Response.Cookies.Add(cookie);
}
</code></pre>
<p>And to load it again :</p>
<pre><code>if (System.Web.HttpContext.Current.Request.Cookies["CountryPreference"] != null)
{
System.Web.HttpContext.Current.Request.Cookies["CountryPreference"].Expires = DateTime.Now.AddYears(1);
data.Country = System.Web.HttpContext.Current.Request.Cookies["CountryPreference"].Value;
}
</code></pre>
<p>For some reason the cookie is always null?</p>
http://stackoverflow.com/questions/1925736/jquery-effects-disappear-after-asp-postback-in-firefox0jQuery effects disappear after ASP postback in FirefoxMartin2009-12-18T01:25:34Z2009-12-18T21:21:07Z
<p>I have a ASP updatepanel, within that panel I have some controls which got jQuery effects connected to them.</p>
<p>The effects work perfect before posback, after postback the effects only work in IE not in FF.
To get it working in IE I added the following to my MasterPage:</p>
<p><code>
function pageLoad(sender, args)
{
// Initialize jQuery effects.
}
</code></p>
<p>With this code it works in IE but bot in FF, anyone got an answer to this one?</p>
http://stackoverflow.com/questions/1922676/gateway-page-between-asp-and-an-asp-net-page0Gateway Page Between ASP and an ASP .NET Pageajdams2009-12-17T15:49:14Z2009-12-18T14:08:23Z
<p>I'll admit, I am pretty new with ASP .NET programming and I have been asked to take all our gateway pages (written in classic ASP) and make one universal gateway page to the few C# .NET applications we have (that I wrote). I tried searching here and the web and couldn't find much of anything describing a great way to do this and figured I was either not searching properly or was not properly naming what I am trying to do. </p>
<p>I decided to to take one of the main gateway pages we had in classic ASP and use that as a base for my new gateway. Without boring you with a bunch of code I will summarize my gateway in steps and then can take advice/critique from there.</p>
<p>EDIT: Basically what I am trying to do is go from a classic ASP page to a ASP .NET page and then back again.</p>
<p>EDIT2: If my question is still unclear I am asking if what I have an the right start and if anyone has suggestions as to how this could be better. It can be as generic as need-be, not looking for a specific off-the-shelf code answer.</p>
<p>My Gateway page:<br>
In the first part of the page I grab session variables and determine if the user is leaving or returning through the gateway:</p>
<p>Code (in VB): </p>
<pre><code>
uid = Request.QueryString("GUID")
If uid = "" Then
direction = "Leaving"
End If
' Gather available user information.
userid = Session("lnglrnregid")
bankid = Session("strBankid")
' Return location.
floor = Request.QueryString("Floor")
' The option chosen will determine if the user continues as SSL or not.
' If they are currently SSL, they should remain if chosen.
option1 = Application(bankid & "Option1")
If MID(option1, 6, 1) = "1" Then
sslHttps = "s"
End If
</pre></code>
Next I enter the uid into a database table (SQL-Server 2005) as a uniqueidentifier field called GUID. I omitted the stored procedure call.
Lastly, I use the direction variable to determine if the user is leaving or returning and do redirects from there to the different areas of the site.
Code (In VB again):
<pre><code>
If direction = "Leaving" Then
Select Case floor
Case "sscat", "ssassign"
' A SkillSoft course
Response.Redirect("Some site here")
<pre><code> Case "lrcat", "lrassign"
' A LawRoom course
Response.Redirect("Some site here")
Case Else
' Some other SCORM course like MindLeaders or a custom upload.
Response.Redirect("Some site here")
End Select
Session.Abandon
Else
' The only other direction is "Returning"
</code></pre>
<p>.....
</pre></code></p>
<p>That's about it so far - so like I said, not an expert so any suggestions would be greatly appreciated!</p>
http://stackoverflow.com/questions/1923814/how-to-invoke-java-methods-through-com0How to invoke Java methods through COMDan2009-12-17T18:53:56Z2009-12-18T03:39:36Z
<p>I have a classic ASP/VBScript application that needs to call methods in a Java class. I discovered two products that apparently can do this: <a href="http://www.nevaobject.com/%5Fdocs/%5Fjava2com/java2com.htm" rel="nofollow">Java2COM</a> and <a href="http://javacombridge.com/" rel="nofollow">Java COM Bridge</a>. Can you recommend one from experience, or is there yet another mechanism by which we can do this which is better? I'd rather avoid having to write C++ code if possible, although we could certainly create a COM DLL in VB6 that could in turn call low level APIs as necessary.</p>
http://stackoverflow.com/questions/1922525/proper-use-of-masterpages1Proper use of MasterPagesPaulj2009-12-17T15:30:15Z2009-12-17T17:21:29Z
<p>I've been looking into different methods of implementing masterpages. </p>
<ol>
<li>Use the masterpage only for layout, include common controls on every page
</li>
<li>Include controls on the masterpage, use a masterpage abstract base class and override it's properties in the masterpage class. This caused the masterpage events to no longer wire up. I could probably fix this, but it's a long way to go just for a single textbox value.</li>
<li>use good 'ol Page.Master.FindControl()</li>
</ol>
<p>I've read that findcontrol should be avoided (uses magic "label1" strings, supposedly uses too many resources) and masterpages are only for layout. If masterpages are only for layout, do I copy and paste common controls across 100's of pages? </p>
<p>What's the best practice that deals with displaying and accessing common site controls (like a search)? Considering the alternatives, using findcontrol to get a masterpage control doesn't seem that bad.</p>
http://stackoverflow.com/questions/1916861/iis7-win-2008-asp-mvc-http-result-504-status-with-static-files-css-js-images0IIS7 Win 2008 + ASP MVC http result 504 status with static files css, js, imagesmarcinn2009-12-16T18:57:16Z2009-12-17T07:57:08Z
<p>Randomly accessing static files on our web site returns http 504 error status code</p>
<p>From fiddler:</p>
<blockquote>
<p>Result Protocol Host URL Body Caching
Content-Type Process Comments Custom
288 504 HTTP<br>
/assets/styles/site1.css 512 text/html
ekrn:700 289 504 HTTP<br>
/assets/styles/rightmenu.css 512
text/html ekrn:700 291 504 HTTP<br>
/assets/scripts/jquery.cookie.js 512
text/html ekrn:700</p>
</blockquote>
<p>Fiddler gives information</p>
<blockquote>
<p>HTTP/1.1 504 Fiddler - Receive Failure
Content-Type: text/html Connection:
close Timestamp: 08:30:45:8693</p>
<p>ReadResponse() failed: The server did
not return a response for this
request.</p>
</blockquote>
http://stackoverflow.com/questions/1917490/deploy-publish-vs-2008-web-application0Deploy/Publish VS 2008 Web Applicationsmithaunni2009-12-16T20:34:57Z2009-12-16T20:34:57Z
<p>Hello,</p>
<p>What is the best method to deploy an VS 2008 Web Application? My web application contains webservice references, libraries etc and i have to publish this to my production server which has iis 6.0 on it.
Should i use VS Web Deployment method? Should i go with pre compilation and publsih the website? I am confused as you can see :).. Any help would be greatly appreciated.</p>
<p>Thanks much</p>
http://stackoverflow.com/questions/633452/programatically-prevent-asp-net-ajax-scripts-from-rendering0Programatically prevent ASP .NET AJAX scripts from renderingcbp2009-03-11T05:28:39Z2009-12-16T12:57:02Z
<p>Does anyone know of a way that I can stop all the .NET AJAX scripts from rendering, even if a ScriptManager exists on the page?</p>
<p>The ScriptManager's Visible property has been overridden and disabled so that you receive a NotImplementedException if you try to set the Visible property.</p>
<p>The reason I would like to do this is that I don't want these large chunks of javascript all over my pages when they are not required. The ScriptManager needs to be included on the master page to ensure that only one ScriptManager is added, but it would be stupid to to have to have two versions of the same master page - one ajax enabled and one not. </p>
<p><strong>Edit:</strong> I am actually using Telerik's RadScriptManager with RadAjax, in case anyone knows a method using these classes instead.</p>
http://stackoverflow.com/questions/1907696/how-to-get-checked-row-of-data-grid-in-java-script0How to get checked row of data grid in java script?Ishita2009-12-15T14:05:41Z2009-12-15T14:19:00Z
<p>Hi,
I'm using the DataGrid control with template columns.
I m getting the data in datagrid but I'm having trouble accessing the data of checked row using java script.
How can i achive dis using java script?</p>
http://stackoverflow.com/questions/1903350/volatility-of-query-results-in-asp1Volatility of query results in aspDeverill2009-12-14T20:38:41Z2009-12-15T13:50:07Z
<p>I have seen a couple of instances now where some legacy code I'm working on exhibits what seems buggy behovior and I wonder if I just don't understand something.</p>
<pre><code> rsCaspio.Open sql, dbCaspio, ,adLockReadOnly
response.write(rsCaspio("fieldname") & "<BR>")
response.write(rsCaspio("fieldname") & "<BR>")
</code></pre>
<p>It will write the contents the first time but the second time it is blank. Is this not unexpected and I just don't know something about queries or is there something really odd happening that I need to dig into deeper? Perhaps results aren't guaranteed after the first read? This code has been working but with a few changes it has suddenly gone blank. The original programmer would read once and reference the result several times and in several routines which is scary, but the example above is from my debugging and the lines are right next to each other.</p>
<p>If it was asp.net I'd look for overloaded stuff or freaky pointer math since it's legacy, but that shouldn't be the case in good old ASP, right?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/253673/recommended-hash-for-passwords-in-asp-classic0Recommended hash for passwords in ASP ClassicCory House2008-10-31T14:19:16Z2009-12-15T12:55:29Z
<p>What is the slowest (therefore best) hash algorithm for passwords in ASP Classic?</p>
<p>EDIT: For those unaware, when hashing passwords, slower hashes are preferred to faster to help slow rainbow table style attacks. </p>
<p>EDIT2: And yes, of course speed isn't the only valid concern for hash selection. My question assumes that <strong>All other things being equal</strong>, <a href="http://www.securityfocus.com/blogs/262" rel="nofollow">the slowest hash method is preferred</a> when hashing a password. Though collision/reverse engineering is of course a concern too, I'm prioritizing speed in this question since it is arguably the most critical factor to consider when comparing popular hash algorithms for use on passwords.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/884660/how-to-create-google-sitemap-for-mvc-site1how to create google sitemap for mvc site?deadbuddha2009-05-19T19:42:40Z2009-12-15T03:50:21Z
<p>Hello there, I was wondering if anyone has done this yet or has any examples
on how to create a Google Sitemap for an MVC website.</p>
<p>Any help or example would be appreciated.</p>
<p>Im talking about this:
https://www.google.com/webmasters/tools/docs/en/protocol.html</p>
http://stackoverflow.com/questions/1373352/search-in-static-pages0Search in static pagesShyju2009-09-03T13:16:00Z2009-12-14T11:00:03Z
<p>I have an ASP web application which has pages with static content as well as dynamic content(data from database). I want to implement a search feature in the site.I Can do this with the dynamic data easily by framing the select query based on the search keys and pull data from the tables,But i would like to know how can i implement the search with the static pages ? </p>
http://stackoverflow.com/questions/1871472/google-analytics-not-gathering-data-from-asp-page0Google analytics not gathering data from .asp pagesthg2009-12-09T03:49:14Z2009-12-14T03:09:59Z
<p>Hi,
I've installed <a href="http://google.com/analytics" rel="nofollow">Google Analytics</a> several times in the past without trouble. However, recently i've installed GA on a .asp page for the first time. Google Analytics dashboard tells me the tag is properly installed, but ever after several days, i can't see any data.</p>
<p><hr></p>
<p><img src="http://img704.imageshack.us/img704/4584/tracking1.jpg" alt="alt text"> </p>
<p><hr></p>
<p><img src="http://img340.imageshack.us/img340/8272/tracking2.jpg" alt="alt text"></p>
<p><hr></p>
<p>Is there any special setup required for .asp pages or windows servers? </p>
<p>Unfortunately, I don't have the option to install <a href="http://gahelper.com/" rel="nofollow">GAHelper</a>.</p>
http://stackoverflow.com/questions/1896448/what-software-ill-need-to-become-proficient-in-the-microsoft-endorsed-languages1What software I'll need to become proficient in the Microsoft endorsed languages?unknown (google)2009-12-13T13:03:47Z2009-12-13T19:05:33Z
<p>I have a free MSDN account and now that I am proficient in C/C++/Java, and know some JavaScript, PHP and MySQL, I want to learn some proprietary languages from Microsoft. I am looking to experiment with everything within the next several months - C#, ASP, VB, things I haven't even heard of [insert suggestions here], what have you. </p>
<p>However, I know nothing about the languages and the software that I need. I don't even know what .NET is. </p>
<p>I don't know if I should be downloading Visual Studio 2008 or Visual Studio .NET. I don't know if I need .NET Framework 1.1... there's just so much stuff on MSDN. I don't even know how begin to do any ASP... Please don't flame me. </p>
<p>I was hoping that with your help I can make a complete list of languages and software and start experimenting. Which framework do I need? Should I install a regular Windows, a professional version or a server? What do I need to do DB related stuff?</p>
<p>There are a lot of questions here and I would like to get an answer to each, so please contribute with whatever you can. I am devoting 2 days to downloading and researching the topic myself, but I would like some [professional] people input, because googling these things just isn't enough.</p>
http://stackoverflow.com/questions/1894414/getting-a-job-with-mcpd-microsoft-certified-professional-developer0getting a job with MCPD (Microsoft Certified Professional Developer)numerical252009-12-12T19:15:04Z2009-12-13T00:01:47Z
<p>Hey guys, was going to college but I had to stop due to financial hardships. I am thinking about working to get my MCPD certification in ASP.NET Developer 3.5 on Visual Studio 2008. Through this I was hoping i can get a good job and continue my education.</p>
<p>My question is - what are the possibilities of me getting a job with the MCPD certification. </p>
<p>I do have 2 years experience in server side development. But it is with php. Anyone with experience with this scenario ? Thanx alot guys!</p>
http://stackoverflow.com/questions/1890146/iis-smtp-not-sending-from-net-works-from-asp0iis smtp not sending from .net works from .aspJennifer2009-12-11T18:54:25Z2009-12-11T18:54:25Z
<p>I have IIS SMTP set up using a Smart Host. I can send mail via .asp; but, does not send via .net. </p>
<p>Not even writing to SMTP log.</p>
http://stackoverflow.com/questions/1731616/windows-identity-foundationwif-does-it-work-with-legacy-asp0Windows Identity Foundation(WIF) - Does it work with legacy ASP?Rob2009-11-13T20:15:33Z2009-12-11T13:54:49Z
<p>I've seen a bunch of examples getting ASP.NET to work with WIF, but what about some of the old legacy ASP applications? We've got some sitting around our Intranet and I'm curious if the old code will work with WIF's authentication/authorization schemes. We won't be re-writing them for a good while.</p>
http://stackoverflow.com/questions/1877993/update-config-file-with-classic-asp0Update config file with classic ASPJT.WK2009-12-10T00:55:42Z2009-12-10T15:06:42Z
<p>I have a configuration file that i would like to update with classic asp.</p>
<p>Lets say the conf file looks like this:</p>
<pre><code>[Parameters]
param1 = 'foo'
param2 = 'boo'
param3 = 'moo'
param4 = 'choo'
</code></pre>
<p>What I would like to do is write a script to change <code>param2</code> and <code>param4</code> to have different.</p>
<p>As I am not all that great with asp, I was wondering what would be the best way to do this? ie is there a way I can increment the line and look for <code>param2</code> and <code>param4</code> and then somehow replace the entire line?</p>
<p>Any help will be much appreciated.</p>
http://stackoverflow.com/questions/684610/how-can-i-display-my-ssn-id-in-the-asp-web-page-with-pci-standards-3How can I display my SSN id in the ASP web page with PCI standardsBALAMURUGAN2009-03-26T05:19:55Z2009-12-10T13:34:00Z
<p>In my ASP web page I am displaying SSN number </p>
<p>" name ="txtSSNID" size ="20"></p>
<p>The Fortify Developer tool detects this as error. How can I fix this issue.</p>
<p>I need to display the SSN Number but the thing is it should not caught while testing in Fortify developer tool for security violations</p>
http://stackoverflow.com/questions/1797211/eclipse-asp-classic-plugin0Eclipse – ASP classic pluginAdrian2009-11-25T14:23:32Z2009-12-09T22:09:44Z
<p>Where can I find an Eclipse plugin for ASP classic?</p>
http://stackoverflow.com/questions/1863400/asp-readline-non-standard-line-endings2ASP Readline non-standard Line EndingsMatt Dawdy2009-12-07T22:36:45Z2009-12-08T17:28:13Z
<p>I'm using the ASP Classic ReadLine() function of the File System Object. All has been working great until someone made their import file on a Mac in TextEdit. The line endings aren't the same, and ReadLine() reads in the entire file, not just 1 line at a time.</p>
<p>Is there a standard way of handling this? Some sort of page directive, or setting on the File System Object?</p>
<p>I guess that I COULD read in the entire file, and split on vbLF, then for each item, replace vbCR with "", then process the lines, one at a time, but that seems a bit kludgy. </p>
<p>I have searched all over for a solution to this issue, but the solutions are all along the lines of "don't save the file with Mac[sic] line endings."</p>
<p>Anyone have a better way of dealing with this problem?</p>
http://stackoverflow.com/questions/769714/javascript-updatepanel-stop-when-inactive0JavaScript UpdatePanel: Stop when InactiveAndrew Lee2009-04-20T19:14:42Z2009-12-08T01:22:08Z
<p>Hi I would like to do the following:</p>
<p>Use JavaScript to stop the update panel from "updating" when the browser is inactive, and restart once it’s active again. I was looking at: <a href="http://www.beyondfusion.com/html/tutorial-autoclose.php" rel="nofollow">Inacivity with JavaScript</a>. I was hoping that I could use this to accomplish what I want; can someone point me in the right direction? Thank you very much!</p>
<p>[EDIT]
I am using a Timer for the updates so if I can somehow disable the Timer from JavaScript I think I can do this. </p>
http://stackoverflow.com/questions/1863381/how-to-get-column-name-in-classic-asp-using-recordset0How to get Column name in Classic Asp using RecordSet?Sugam2009-12-07T22:33:18Z2009-12-07T22:42:22Z
<p>Hi,</p>
<p>I am displaying data in a web report from table using Recordset.</p>
<p>This works fine upto 5000 records but fails while more then 5000 records.</p>
<p><strong>Recordset.Fields.Count gives Zero (0).</strong></p>
<p>Please let suggest me any alternative.</p>
<p>Thank you
Sugam</p>