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
Z

Zee_Zee

@Zee_Zee
About
Posts
12
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Getting the list of DHCP clients
    Z Zee_Zee

    Hi Ganesh! Any success in getting the Subnet Clients? I'm also facing the same problem i.e; no error but I get 0 clients. I've used DhcpEnumSubnets and DhcpGetSubnetInfo successfully but DhcpEnumSubnetClients isn't returning me the results. I'd really appreciate if you share the solution if you've got it working. Thanks. Zeeshan.

    Nature coded us, we code things for us... Zee_Zee

    C# json question

  • How to Register an ActiveX?
    Z Zee_Zee

    Hello Figh, You can register your control as follows: 1) Go to command line 2) Type: "Regsvr32" your ActiveXControl's complete path and name.ocx 3) And then press enter I hope it works. Goodluck Zee_Zee

    Web Development com help tutorial question workspace

  • Restricting file copy on network
    Z Zee_Zee

    Hi, I have written a small asp script that simply gets all the file names from a directory and then list them as hyperlinks. When I click on that hyperlink, a dialogue appears asking to "Open", "Save", "Cancel" and "More Info". I don't want this dialogue box to appear because user can save that file to his/her local pc then. I don't want to let user copy that file. I want it to be like if user clicks on the link then the file only gets opened with the application it is associated with. Please help me in this regard as its urgent. With best regards, Zee_Zee

    Web Development sysadmin tools help

  • Auto date colum
    Z Zee_Zee

    Hi All! I need to put a column in a table and want that column to store the date at which that particular row was updated or some new row is added into the table. I am doing this to check when the table is updated. Kindly guide me for creating such a column in SQL. With best regards, Zee_Zee

    Database database tutorial

  • Retrieve a Value from Hyperlink
    Z Zee_Zee

    If you are going to another page using this hyperlink, then you can retrieve the value as: Request.queryString("Brand") This will return the value that you passed along with the hyperlink. Regards, Zee_Zee

    ASP.NET question sysadmin

  • Dynamically Adding Textboxes
    Z Zee_Zee

    I don't know if I got it right but isn't this better to use client side scripting in such scenario? If yes, then simply create those controls using javascript. If no, then please let me know why. Regards, Zee_Zee

    ASP.NET csharp question

  • Clientside Dynamic Dropdowns
    Z Zee_Zee

    yes its possible. You can use XML Data Island on client side and then manipulate that using DOM. I did use this technique in VB6 and ASP. If you need more help, then most welcome. Regards, Zee_Zee

    ASP.NET sysadmin hardware sales xml question

  • Passing Parameter Value to Crystal Report Viewer
    Z Zee_Zee

    You're most welcome. Well, I talked about the reference to that .rpt file. Like if you have your report file named 'RPT_PaymentSlip', then you've to create an instance like this. Dim oRpt As New RPT_PaymentSlip Regards, Zee_Zee

    ASP.NET help tutorial question

  • Passing Parameter Value to Crystal Report Viewer
    Z Zee_Zee

    Hi, For that you've to add up a parameter field in the report. Then in the code from where you want to pass the value for that parameter, use oRpt.SetParameterValue("Parameter Name", ParameterValue) 'where oRpt is your report object I hope this helps. with best regards, Zee_Zee

    ASP.NET help tutorial question

  • Hyperlinks becoming invalid
    Z Zee_Zee

    Dear All, I'm facing a strange problem here. I've added a user control in my application that is basically a Page Header for many of the pages of the application. This header just contains hyperlinks to other areas of the application with navigateURL specified as "../Directory/Page.aspx". During development and still after deployment if accessed by using the "localhost" instead of "MachineName" it works fine. But when I access the application using the url:" http://MachineName/AppName" the links on the user control become invalid and take the users to page saying "Resource cannot be found." When I observed the URL in the browser, it is as follows: 1) When accessed by using localhost: http://localhost/AppName/Store/ViewMIRForApproval.aspx 2) When accessed by using the machine name: http://mis-7/AppName/AppName/Store/ViewMIRForApproval.aspx Notice the occurence of AppName twice in the second case. Kindly suggest me how to get rid of this problem. With best regards, Zee_Zee

    ASP.NET sysadmin help tutorial learning

  • SQL Connection not released (VB.Net)
    Z Zee_Zee

    Thanks a lot friend I really appreicate your help Regards, Zee_Zee

    ASP.NET database csharp sql-server sysadmin

  • SQL Connection not released (VB.Net)
    Z Zee_Zee

    Hello friends, I am facing a strange problem here. I have a class with a private member of type string. This is actually a connection string. I've a public method getConnection that creates an instance of sqlConnection and returns it. I simply set reference to this returned object in my pages and after using this connection I close this connection using the reference. But when I go and check "connections using this database" through sql server enterprise manager it shows me 5 connections there even if I close the application. I am pasting the code snippets to make you understand the situation more clearly. ''''''''''''''''''''This is my vb class''''''''''''''''' Public Class DBConnection Private connString As String Public Sub New() connString = "Server=myPC; Database=testDB;UID=sa;Password=;" End Sub Public Function getConnection() As SqlClient.SqlConnection Dim connObj As New SqlConnection(connString) connObj.Open() Return connObj End Function End Class ''''''''''''''''''''This is code behind file''''''''''''''''' Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'Put user code to initialize the page here populatePendingConsignmentsGrid() End Sub Private Sub populatePendingConsignmentsGrid() Dim objConn As SqlClient.SqlConnection Dim objDR As SqlClient.SqlDataReader Dim objConsignment As New Consignment Dim i As New Integer Dim consignmentObj As New Consignment Dim arrList As ArrayList Dim objDBConnection As New DBConnection objConn = objDBConnection.getConnection() objConsignment.getAllPendingConsignmentsDR(objConn, objDR) PendingConsignmentsDG.DataSource = objDR PendingConsignmentsDG.DataBind() objDR.Close() objConn.Close() objConn.Dispose() End Sub '''''''''''''''''''''''''''''''''''''''''''''''''''' With best regards, Zee_Zee

    ASP.NET database csharp sql-server sysadmin
  • Login

  • Don't have an account? Register

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