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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
F

Felipe Dalorzo

@Felipe Dalorzo
About
Posts
36
Topics
3
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • get the client hostname or ip address using asp.net
    F Felipe Dalorzo

    Try this: string hostName= System.Net.Dns.GetHostName() string ipAddress = System.Net.Dns.GetHostAddresses(hostName)(0).ToString() Felipe

    ASP.NET csharp asp-net help tutorial question

  • Session Problem
    F Felipe Dalorzo

    Check your cookies settings, ASP.NET handles the session in cookies, if your browser doesn't allow cookies then you will have problems like those you mentioned. Let me know if that fix your problem. Greetings, :laugh: Felipe

    ASP.NET help csharp asp-net sysadmin tutorial

  • Configure Microsoft Internet Information Services
    F Felipe Dalorzo

    Then try adding a Global.asax and/or Web.config. If have those the last thing I can think of is: Go the IIS, right click the virtual directory go to the ASP.NET Tab and select the Version 2.0. Let me know how it goes. Felipe :^)

    ASP.NET help csharp c++ asp-net dotnet

  • http BASIC authentication question
    F Felipe Dalorzo

    String auth = userID + ":" + password; byte[] binaryData = Encoding.UTF8.GetBytes(auth); auth = Convert.ToBase64String(binaryData); // Using base64 encoding auth = "Basic " + auth; //This specifies it to use Basic Authentication // Prepare web request HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(myURL); // Add the standard headers webRequest.Method = "POST"; webRequest.ContentType = "application/x-www-form-urlencoded"; webRequest.ContentLength = 0; // Add this additional header webRequest.Headers[“AUTHORIZATION”] = auth; HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse();

    ASP.NET security question csharp asp-net database

  • Configure Microsoft Internet Information Services
    F Felipe Dalorzo

    Go to the IIS. Right click the "virtual directory" of your application. Select "Properties". Go to "Directory Security" -Tab - (click). click on Edit. Enable "anounymous access". Click Ok. Let me know if that worked for you. Felipe :laugh:

    ASP.NET help csharp c++ asp-net dotnet

  • Easy database question
    F Felipe Dalorzo

    Hey guys, I am from Costa Rica and my primary language is Spanish and I don't know how to pronounce "Rowguid". Can you please tell me what is the phonetic sound of that word in english. Thanks, :-D

    IT & Infrastructure question database tutorial

  • SQL to XML & XML to SQL
    F Felipe Dalorzo

    Now, can you provide an example of what is it that you want?

    ASP.NET database xml

  • SQL to XML & XML to SQL
    F Felipe Dalorzo

    What database server are you using? Is it SQL Server

    ASP.NET database xml

  • Type.GetType()
    F Felipe Dalorzo

    Buddy u got all wrong. If you don't see the dll in your bin directory it is because either you did not compile it or you are getting a compilation error. ASP.NET does not compile the ASP.NET code in runtime, .NET compiles IL in runtime. If you want to see the your assembly name right click the project and click properties, there are some tabs there one of them will have the assembly name. Greetings :^)

    ASP.NET question

  • Type.GetType()
    F Felipe Dalorzo

    Type type = Type.GetType("myNameSpace.PortalModuleControl, MyAssemblyName"); Can you tell me if your namespace is the same as your assembly name. What's your assembly name?

    ASP.NET question

  • Type.GetType()
    F Felipe Dalorzo

    Yes what you are doing is not right... Here is a the rith way: Type type = Type.GetType("MyNameSpace.TheWholeThing.MyClassName, MyNameSpace"); MyAssemblyName issually is the same as the namespace, for instance but not always: namespace TQU.Demo{ public class Test2{ } } namespace TestingTypes { class Class1 { [STAThread] static void Main(string[] args) { Type type = Type.GetType("TQU.Demo.Test2, TestingTypes"); } } } Greetings ;P

    FDM

    ASP.NET question

  • Singleton ?
    F Felipe Dalorzo

    The smallest deployment unit that exist in .NET is an assembly, but when you create an assembly (*.dll, *.exe), this makes them like small islands to comunicate them you need to use things like .NET Remoting to be able to let them talk, but the use of such power solution will make sense only if you are talking about processes(running in the back) or executable applications because either a private or public dll can be used in many applications at the same time with no problems. Hope this help

    .NET (Core and Framework) question

  • Can window be created in a window service?
    F Felipe Dalorzo

    I have something important to ask you... What???? I don't understand what is it that you want? :^)

    IT & Infrastructure question

  • Windows Authentication
    F Felipe Dalorzo

    It is possible but it has some restrictions, all your users must use Microsoft IE... If they do, find about the aunthentication options in the IIS. Anonymous | Windows | Basic X|

    ASP.NET database security help question

  • SQL Server timestamp
    F Felipe Dalorzo

    How about using a trigger? of course you will need to have a column to store the value but I bet that's easiest/simplest way.. Greetings, :->

    Database csharp database sql-server sysadmin help

  • DataReader
    F Felipe Dalorzo

    .... IDataReader reader = cmd.ExecuteReader(); DataGrid1.DataSource = reader; DataGrid1.DataBind(); ... The code is something like that or at least very close. This solution only works over ASP.NET, Windows Grids can't read data from a DataReader Greetings, :-D

    Database

  • HTML into XML
    F Felipe Dalorzo

    Yep! I found some components but I couldn't fine one that worked all the time... They worked for simple scenarios but complex scenarios they didn't.. :wtf::rolleyes:

    XML / XSL html xml question

  • HTML into XML
    F Felipe Dalorzo

    Not true, there's a lot of tags that do not respect XML format like "br" "img" "input" and you are not force to close a tag in HTML you can leave it open if you want, that is where I am having my problem... Thanks for the reply :wtf:

    XML / XSL html xml question

  • Writing my 70-305 exam next week
    F Felipe Dalorzo

    Let me tell, I used MeasureUp for my first certificacion Exam, I can garantee you that it sucks!. You can get a 100% with MeasureUP and get 0 in the exam because the MeasureUp people knows nothing about those exams... You can go to exam cram, they have a free sample there and I think it is much better than measureup. Don't worry to much because 70-305 is easy. Actually I would say it is one of the easiest ones if you really study the subjects.... The will ask you a lot related to the web.config, so better learn all the options and configurations, they will do that for every subject.. Also they are going to ask you <%Page blabla options%>... If you know very well those you have half exam, ADO.NET is the rest you need to know.

    Work Issues csharp asp-net visual-studio mcp question

  • MFC exam
    F Felipe Dalorzo

    There is not... The closest is the 70-300 which I think is boring and useless but if you want to be MCSD you will have to take it, but my advice is that if you don't have at least an MCAD don't try it... Greetings :zzz:

    Work Issues question c++
  • Login

  • Don't have an account? Register

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