Hi friends I have one aspx page, in which images are showing continuously. on mouse over i want to delay this process i need delay in javacript. thanks
Laxmikant Lad
Posts
-
delay function with javascript -
delay in javascriptHi friends I have one aspx page, in which images are showing continuously. on mouse over i want to delay this process i need delay in javacript. thanks
-
Web Parts Personalization and profileHi friends I am using ASP.net application with Web Parts Personalization and Profile functionaliy. I have set the application on a server where any of SQL server 2005 edition is not installed. SQL Server 2000 is there. My database is on different server where I remote connections are allowed and using both TCP/IP and piped connection. Getting error An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Shared Memory Provider, error: 40 - Could not open a connection to SQL Server) Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. SQLExpress database file auto-creation error: The connection string specifies a local Sql Server Express instance using a database location within the applications App_Data directory. The provider attempted to automatically create the application services database because the provider determined that the database does not exist. The following configuration requirements are necessary to successfully check for existence of the application services database and automatically create the application services database: If the applications App_Data directory does not already exist, the web server account must have read and write access to the applications directory. This is necessary because the web server account will automatically create the App_Data directory if it does not already exist. If the applications App_Data directory already exists, the web server account only requires read and write access to the applications App_Data directory. This is necessary because the web server account will attempt to verify that the Sql Server Express database already exists within the applications App_Data directory. Revoking read access on the App_Data directory from the web server account will prevent the provider from correctly determining if the Sql Server Express database already exists. This will cause an error when the provider attempts to create a duplicate of an already existing database. Write access is required because the web server accounts credentials are used when creating the new database. Sql Server Express must be installed on the machine. The process identity for the web server account must have a local user profile. See the readm
-
Security ErrorHi friends I am getting an eror and gives following description If the applications App_Data directory already exists, the web server account only requires read and write access to the applications App_Data directory. This is necessary because the web server account will attempt to verify that the Sql Server Express database already exists within the applications App_Data directory. Revoking read access on the App_Data directory from the web server account will prevent the provider from correctly determining if the Sql Server Express database already exists. This will cause an error when the provider attempts to create a duplicate of an already existing database. Write access is required because the web server accounts credentials are used when creating the new database. can you tell me what I need to do ? Thanks
-
Assigning value to variableDECLARE @FoundID VARCHAR(10) SELECT @FoundID = Employee.EmployeeID FROM Employee JOIN EmployeeTerritory ON Employee.EmployeeID = EmployeeTerritory.EmployeeID JOIN Territory ON EmployeeTerritory.TerritoryID = Territory.TerritoryID WHERE AssignedPostal = SUBSTRING(@CustomerPostalCode, 1, 1) IF NOT EXISTS(@FoundID) RAISERROR('The speicified CustomerPostalCode is not assigned to any salesperson! Unassigned PostalCode!', 11, 1)
-
how to call asmx webservices?add the web ref of your asmx web service to your project crate the object and call the method which will specify what are the parameters are required for this
-
Browser independent javascript -
Is it possible to overcome proxy Authentication?set the obj.proxy = null;
-
How i can access Text Box in queryadd this direcvtive in html ]]> and you can access the master pages text box like MasterPage pg = new MasterPage(); TextBox tb = (TextBox)pg.FindControl("Text1"); :laugh:
-
Failed to load viewstate.hi you have added the controls cynamically. put that code in a function and call it from both from page load and from your necessary place like button click thanks
-
which event cause postbackhi friends I wnat to know if page is postback true which button has caused the postback how can i get this pls help thanks Laxmikant
-
isfileopenHi Friends I want to write some data to a text file. How can I know file is already been used by other process ? Thanking you, Laxmikant
-
FTPweb requestHi friends, i am using ftpwebrequest to upload files on ftp server here is my code. string uri = "ftp://myuserid:mypwd@ftp.shopzilla.com/myfile.txt"; FtpWebRequest reqFTP; reqFTP = (FtpWebRequest)FtpWebRequest.Create(new Uri(uri)); reqFTP.Proxy = null; reqFTP.Credentials = new NetworkCredential("myuserid", "mypwd"); reqFTP.KeepAlive = false; reqFTP.Method = WebRequestMethods.Ftp.UploadFile; reqFTP.UseBinary = true; reqFTP.ContentLength = fileInf.Length; int buffLength = 2048; byte[] buff = new byte[buffLength]; int contentLen; FileStream fs = fileInf.OpenRead(); try { Stream strm = reqFTP.GetRequestStream(); contentLen = fs.Read(buff, 0, buffLength); while (contentLen != 0) { strm.Write(buff, 0, contentLen); contentLen = fs.Read(buff, 0, buffLength); } strm.Close(); fs.Close(); } catch (WebException webEx) { WriteLog("Adding to Bizrate webex : " + webEx.Response.ToString()); WriteLog("Adding to Bizrate webex : " + webEx.Status.ToString()); WriteLog("Adding to Bizrate webex : " + webEx.Message); } catch (Exception ex) { WriteLog("Adding to Bizrate : " + ex.Message); } i am getting error The remote name could not be resolved: 'ftp.shopzilla.com' and status NameResolutionFailure please give me any solution or link to solve this Thanking you, Laxmikant Lad
-
Listing items to Bizrate/shopzillaHi friends, :rolleyes: Does any one knows any idea about how to List your items to Bizrate/Shopzill.com Thanking you, Laxmikant Lad
-
uploading file to ftp websiteHi friends I need to upload my product data to bizrate/shopzilla.com using their ftp website. can I access others ftp website using ASP.net code and upload my products details Thanking you, Laxmikant
-
Dropdownlist should trigger the panelhi write the bubble event means write one protected functions like protected void visiblePanel(object sender, EventArgs e) { if dropdownlist ="YES" then p1.visible=true else p2.visible= false } in html set autopostback of drp to true and set the on OnSelectedIndexChanged = visiblePanel
-
Javascript Help..hi you can use the query strings like trainname.aspx?mumbaiexpress and take the value of query string on pop up form and show the respective value
-
how to stop cursor on the gridview textboxset the text box as readonly or enabled = false
-
calling .jsp functions from ASp.nethi friends I want to call .jsp files functions from asp.net how can I do this I need to create HessianProxyFactory for that does any one knows how to do this Thanking you, Laxmikant
-
calling .jsp functions from ASp.nethi friends I want to call .jsp files functions from asp.net how can I do this I need to create HessianProxyFactory for that does any one knows how to do this Thanking you, Laxmikant