Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
L

Laxmikant Lad

@Laxmikant Lad
About
Posts
40
Topics
14
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • delay function with javascript
    L Laxmikant Lad

    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

    ASP.NET javascript

  • delay in javascript
    L Laxmikant Lad

    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

    ASP.NET javascript

  • Web Parts Personalization and profile
    L Laxmikant Lad

    Hi 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

    ASP.NET database csharp asp-net sql-server sysadmin

  • Security Error
    L Laxmikant Lad

    Hi 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

    ASP.NET database sql-server sysadmin security help

  • Assigning value to variable
    L Laxmikant Lad

    DECLARE @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)

    Database database tutorial question

  • how to call asmx webservices?
    L Laxmikant Lad

    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

    Web Development question csharp asp-net tutorial

  • Browser independent javascript
    L Laxmikant Lad

    http://www.unix.com.ua/orelly/web/jscript/ch18\_01.html

    Web Development javascript help tutorial

  • Is it possible to overcome proxy Authentication?
    L Laxmikant Lad

    set the obj.proxy = null;

    Web Development security sysadmin help question

  • How i can access Text Box in query
    L Laxmikant Lad

    add 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:

    ASP.NET database algorithms

  • Failed to load viewstate.
    L Laxmikant Lad

    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

    ASP.NET help data-structures regex tutorial

  • which event cause postback
    L Laxmikant Lad

    hi 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

    ASP.NET help question

  • isfileopen
    L Laxmikant Lad

    Hi 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

    ASP.NET question

  • FTPweb request
    L Laxmikant Lad

    Hi 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

    ASP.NET com sysadmin help

  • Listing items to Bizrate/shopzilla
    L Laxmikant Lad

    Hi friends, :rolleyes: Does any one knows any idea about how to List your items to Bizrate/Shopzill.com Thanking you, Laxmikant Lad

    ASP.NET com tutorial

  • uploading file to ftp website
    L Laxmikant Lad

    Hi 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

    ASP.NET csharp asp-net com

  • Dropdownlist should trigger the panel
    L Laxmikant Lad

    hi 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

    ASP.NET database announcement

  • Javascript Help..
    L Laxmikant Lad

    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

    ASP.NET javascript help tutorial

  • how to stop cursor on the gridview textbox
    L Laxmikant Lad

    set the text box as readonly or enabled = false

    ASP.NET css tutorial

  • calling .jsp functions from ASp.net
    L Laxmikant Lad

    hi 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

    Web Development csharp java asp-net tutorial question

  • calling .jsp functions from ASp.net
    L Laxmikant Lad

    hi 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

    ASP.NET csharp java asp-net tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups