Hi,
If I am restoring a user database(that already exists) to a backup server using the latest full backup and transaction logs from the production server, do I use the REPLACE option or not.
Thanks
Hi,
I have a second sql server, that already has its own system databases, and a few user databases.
If I want to restore some user databases from another server, do I need to restore the system databases also(before or after), OR will that make the existing user databases unusable?
Thanks
Hi,
I have a batch file that ftps. Here is what it does.
1. It creates a directory listing file of all directories in the current directory.
2. It changes the current directory to each sub directory.
3. It creates a file listing file of all files in the subdirectory.
4. It ftps each file in...
Hi,
I have a batch file that ftps. Here is what it does.
1. It creates a directory listing file of all directories in the current directory.
2. It changes the current directory to each sub directory.
3. It creates a file listing file of all files in the subdirectory.
4. It ftps each file in...
Hi,
I want to add a default value to a stored procedure parameter (datatype int), that when executing the stored procedure will grab all rows if that parameter is not passed a value to it.
If possible, I don't want to add logic, i.e. If @PassID = NULL, etc.
Is there a way to use a wildcard...
Hello,
I am relatively new to asp.net, coming from classic asp background and I need a brief tutorial on the differences of implementing javascript in an asp.net page, compared to the what I am familiar with using classic asp.
Any small summation of the differences, if any, would be a jump...
Hi,
Interesting problem. I have a page which opens a popup window in which users can type comments, and the popup window closes when the user clicks Save, and the javascript code closes the popup window and reloads the parent page to display the new comment.
function refreshPage()
{...
Hi,
I have a form in a page that has quite a few checkboxes, and when a user clicks on a checkbox the Forms onclick envent is triggered. In IE it works, but in Firefox it doesn't work.
The event does finally get triggered if the user clicks in an input element, but I want it to trigger when...
Is it true that the global.asa session events are only triggered when the first asp page in the application is loaded?
If that is true, that is a shame.
Thanks for your knowledge.
I have this page that has a security captcha function call generator, but I only want the captcha to change when the page is initally loaded, not when the page does a postback to itself.
Is there a way to handle this, outside of using ajax.
page code
<%
dim MyResult
MyResult =...
Hi,
I have an asp function that is called that uses the randomize function, but
I only want it to randomize the first time the page is loaded.
My problem is that it is randomized after I resubmit the page on a dropdown that reloads the page.
How can I get it to just randomize the first time...
Hi,
I have an ASP script that writes a javascript array (works like a charm elsewhere), but this time I am getting an error ("imgsec is not defined"), and not getting the expected results.
This is what is written by the ASP:
<script type='text/javascript' language='javascript'>imgsec [0] =...
Hi,
What is the best way to submit a form, and then close the window that the form is submitted from.
This works in Internet Explorer:
<form name="paynow_frm" method="post" target="_blank"action="http://test.asp" onsubmit="javascript:return window.close();paynow_liens();">
but not in...
I get a "document.getElementById("CountyList") has no properties" error message in the JavaScript Console in Fire Fox.
line error in function:
document.getElementById('CountyList').options.length = 0;
entire function:
function State_Select()
{
ind =...
Hi,
I need to populate a form input element using javascript and the form name has a dash in it.
I know that the dash is an illegal character.
document.forms.paynow_frm.cde-PropIntID.value = strintids;
I don't have any control in changing the name of the form element to remove the dash...
Hi,
I have an ASP application that works fine, but now I want to add a transition page "Processing Your Request. Please Wait ..." message in between some pages.
What is the best ASP method to use?
I tried server.execute, and didn't like the results.
Thanks in advance.
Hi,
Can I pass from Asp an multidimensional array to javascript.
I had success passing the one dimesional:
Response.Write "<script type='text/javascript' language='javascript'>"
Response.Write "var liensArr = new Array();"
Response.Write "</script>"
later on:
Response.Write "liensArr" &...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.