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
J

Javier Lozano

@Javier Lozano
About
Posts
224
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Implement RSS feed feature?
    J Javier Lozano

    There's nothing "out of the box" in ASP.NET. However, Dmitri Robsman[^], a member of the ASP.NET Team, created something call the RSS Toolkit[^]. It's a set of controls that allow you expose an RSS feed from your ASP.NET application with minimal coding. ~Javier Lozano

    ASP.NET question csharp asp-net

  • Inserting keywords from textbox in hyperlinks
    J Javier Lozano

    Will you be doing this through ASP.NET or HTML & JavaScript? The more we know, the easier it is to help you out. ~Javier Lozano

    ASP.NET html com tools help tutorial

  • How to deploy new assemblies in an ASP.NET 2.0 application?
    J Javier Lozano

    Could you post what your configuration/system.web/compilation/assemblies node looks like? I created two version of the an assembly called PageLibrary (ver 1.0.0.0 and ver 1.0.0.1) and added them to the GAC. Then within the web.config, I added version 1.0.0.0 to the assemblies node and the application worked fine. Then I changed the version number to 1.0.0.1 and everything worked fine. Are you listing both assemblies version under the assemblies node? (Are you doing this?) <compilation debug="true"> <assemblies> <add assembly="PageLibrary, Version=1.0.0.0, Culture=neutral, PublicKeyToken=bdc533f43df02cbe"/> <add assembly="PageLibrary, Version=1.0.0.1, Culture=neutral, PublicKeyToken=bdc533f43df02cbe"/> </assemblies> </compilation> The more we know, the easier it will be to help you out. ~Javier Lozano

    ASP.NET announcement csharp asp-net dotnet design

  • ASP.NET slow performance when user re-boot computer
    J Javier Lozano

    Does this happen to every user when "they first hit" the website? Or are you describing "the first user" that hits the website?

    Linus51680 wrote:

    It takes 2-3 minutes to load, in this period, the IE seems hanging.

    What are you doing when a user hits the web application? Are you setting up a session or retrieving data? The more info you can give us, the better we can help you out. ~Javier Lozano

    ASP.NET help csharp asp-net performance question

  • How to send a POST Request
    J Javier Lozano

    Do you need to a POST method? Because the Response.Redirect and the Server.Transfer methods will not allow you to pass the data as part of the POST parameters. ~Javier Lozano

    ASP.NET tutorial question com sysadmin help

  • MailMessage() in ASP 2.0 VB
    J Javier Lozano

    If you look at the MailMessage.BCC property documentation, you can see a sample of adding a BCC address to the mail address collection. Pretty much you need to this, Dim bccAddress As MailAddress = new MailAddress(txtBcc.Text) objMM.Bcc.Add(bccAddress) ~Javier Lozano

    ASP.NET help

  • asp.net application memory usage
    J Javier Lozano

    Have you tried using the System.Environment class? Or looking into the ASP.NET performance counters? ~Javier Lozano

    ASP.NET csharp asp-net performance tutorial question

  • Binding an Xml file with a DropDown Control, URGENT!!!!
    J Javier Lozano

    You can just set the DataSource property of the DropDownList control to be your xml reader. Then specifiy how you can display the data. Also, you can load your xml document into a DataSet (might be slow depending on size) and use that instead. ~Javier Lozano

    XML / XSL help wpf wcf sysadmin xml

  • how to show and print employee salary details
    J Javier Lozano

    You can try using the System.Web.UI.WebControls.Repeater to do something similar to this. You can find more information on MSDN.[^] The documentation has an example on VB.NET that shows you how to create a simple table layout. ~Javier Lozano

    ASP.NET csharp asp-net database sales tutorial

  • Need help creating a variable that...
    J Javier Lozano

    The Undefeated wrote:

    i want to create a varibale that will last through a page refresh

    I'm a little confused as what you're trying to do. What do you mean a "page refresh"? Have you thought of usign the Session object or the Application object and lock it based on a user? ~Javier Lozano

    ASP.NET help question

  • Problem with Interops
    J Javier Lozano

    What does the registry point to after you re-register the dll? If you can get a codebase path, then you can figure out where the data goes to. ~Javier Lozano

    ASP.NET com help csharp asp-net question

  • A Page Exit Routine for ASPX page.
    J Javier Lozano

    Have you tought of using the Unload event of the page? For more info check this out: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebUIControlClassUnloadTopic.asp[^] ~Javier Lozano

    ASP.NET csharp

  • DropdownLists problems
    J Javier Lozano

    Deiuwe wrote: 1. I want to sort the Dropdownlist, is there any easy method to do it without using a "traditional" sort method What do you mean by "traditional" sort method? Deiuwe wrote: 2. I have a problem when i try to select another value which is not the first in binding... I've tried to change selectedvalue, selectedindex and selecteditem but it doesn't change... any suggestions I don't understand the question. You mean the value you're selection is not part of the first list? ~Javier Lozano

    ASP.NET help csharp wpf wcf

  • Double hop issue
    J Javier Lozano

    Use HTTPS for the transfer protocol. ~Javier Lozano

    ASP.NET windows-admin asp-net help csharp database

  • Sending HTML based email
    J Javier Lozano

    Just as long as your HTML email is properly formed, your customer's email program should read it fine. I guess, I am confused as what you're trying to ask. ~Javier Lozano

    ASP.NET html sales question

  • function for urlcheck
    J Javier Lozano

    Could you provide more information on what you're trying to accomplish? ~Javier Lozano

    ASP.NET database tutorial

  • UI Classes
    J Javier Lozano

    You can do both. For a project I worked on earlier this year, I created my own user control class (inheriting UserControl) and page class (inheriting Page) to add base code that work with our web framework. So when I created a new user control under the VS.NET, I set the class defined under the .ascx.(vb|cs) to inherit from my user control class. Using this design, I was able to add core functionally by changing the base class and just re deploying one assembly. ~Javier Lozano

    ASP.NET design business question

  • performance in VS 2005
    J Javier Lozano

    The tool is called aspnet_compiler.exe. You can read about it on MSDN's beta documentation[^] ~Javier Lozano

    ASP.NET csharp c++ visual-studio performance question

  • Deploy web service in ASP.NET
    J Javier Lozano

    Check out this article for a work around: http://www.devx.com/dotnet/Article/20418/0/page/7[^] ~Javier Lozano

    ASP.NET csharp asp-net wcf sysadmin help

  • Combining 2 sql statements using Ole and not Sql
    J Javier Lozano

    First of all, use parameterized queries rather than string concatenation. Second, why are you trying to execute these at the same time? ~Javier Lozano

    ASP.NET database csharp asp-net sql-server com
  • Login

  • Don't have an account? Register

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