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
K

Kariem Soudy

@Kariem Soudy
About
Posts
31
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Creating aspx Page Dynamically
    K Kariem Soudy

    consider using ASP.NET MVC or just use HttpHandlers see this article http://msdn.microsoft.com/en-us/library/ms972953.aspx[^]

    Web Developer

    modified on Tuesday, February 24, 2009 3:11 AM

    ASP.NET help com business

  • Visual Studio is not working properly in Vista
    K Kariem Soudy

    check out the url in the displayed web page, does it look like http://localhost:xxxx/XXXXX ? ok, try to replace the localhost with 127.0.0.1, to make the url look like http://127.0.0.1:xxxx/XXXXX and try it, does this work ? if yes, then the error is from the hosts file, which maps the localhost to 127.0.0.1 which is your local machine's IP address, to correct that just go to C:\windows\system32\drivers\etc\hosts open it with notepad, and map localhost to 127.0.0.1 with adding this line: 127.0.0.1 localhost please tell me if this doesn't fix the problem.

    Web Developer

    ASP.NET visual-studio csharp question

  • Guys, can anyone help me with this error
    K Kariem Soudy

    Guys, can anyone help me with this error The "Microsoft.Build.Tasks.Windows.GetWinFXPath" task could not be loaded from the assembly PresentationBuildTasks, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35. Could not load file or assembly 'PresentationBuildTasks, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified. Confirm that the declaration is correct, and that the assembly and all its dependencies are available. WebApplication1 it comes whenever i create a project that uses .NET framework 3.5 please help me i'm using Windows Visa Ultimate

    Web Developer

    LINQ help csharp dotnet announcement

  • Client-side validation is not working with firefox asp.net 1.1
    K Kariem Soudy

    Thank you anyway

    Web Developer

    ASP.NET csharp asp-net sysadmin help question

  • Client-side validation is not working with firefox asp.net 1.1
    K Kariem Soudy

    i think there's a solution, check this out: http://aspadvice.com/blogs/rbirkby/archive/2006/11/01/Client_2D00_side-validation-in-Firefox.aspx[^] but this is with ASP.NET 2.0 and but i'm using ASP.NET 1.1 which is a requirement...

    Web Developer

    ASP.NET csharp asp-net sysadmin help question

  • Client-side validation is not working with firefox asp.net 1.1
    K Kariem Soudy

    Hello guys, I'm working with ASP.NET 1.1 and the validations are not working on the client-side with firefox, it's working fine on the client-side with IE and on server-side for both, can anyone help me with this?

    Web Developer

    ASP.NET csharp asp-net sysadmin help question

  • get controls inside a form in a Multi form application
    K Kariem Soudy

    thanks you very much, will try that

    Web Developer @ Silverkey Egypt

    C# help tutorial

  • get controls inside a form in a Multi form application
    K Kariem Soudy

    can anyone help me in this, i have a multi form app. , i have many open forms, all of the same type(say MyForm) i want to get the text of a textbox inside each open forms) as well as many info, including the position of the form can anyone tell me how to do it thnx in advance

    Web Developer @ Silverkey Egypt

    C# help tutorial

  • requiredfieldvalidator doesn't work properly within updatepanel
    K Kariem Soudy

    ?dear all, requiredfieldvalidator doesn't work properly within updatepanel, when i use it outside of the updatepanel it works, but within the updatepanel and with the validatorcalloutextender it doen't work properly, can u help me please

    Web Developer @ Silverkey Egypt

    ASP.NET help question

  • Any asp.net control
    K Kariem Soudy

    please note that this tag will not be included while you type the code i've shown: **and ]]> please remove it, thnx

    Web Developer @ Silverkey Egypt

    **

    ASP.NET csharp javascript html asp-net help

  • Any asp.net control
    K Kariem Soudy

    hello, please follow these steps: 1)create a web user control named Education and contains your 3 controls and customize it as u like,it should be like this: **]]>
    School
     Major
    Degree
    **2)in your webform add this directive in the top of the page code right after the <%@ page %> directive: ]]> 3)add this code in your webform code: <% try { int ItemsCount = 0; ItemsCount = Convert.ToInt32(Session["ItemsCount"].ToString()); for (int i = 0; i < ItemsCount; i++) { int Counter = i + 1; Education1.ID = "Education" + Counter.ToString(); %> <% } } catch (Exception ex) { } %> 4)add a button and type this in the click event; if (Session["ItemsCount"] != null) { int SessionValue = Convert.ToInt32(Session["ItemsCount"].ToString()); SessionValue++; Session["ItemsCount"] = SessionValue.ToString(); } else { Session["ItemsCount"] = "1"; } that's it, and you may put all of that in an updatepanel to have the AJAX effect.... i wish that could help you, please let me know if there're any errors...

    Web Developer @ Silverkey Egypt

    ASP.NET csharp javascript html asp-net help

  • sentax for C# statement whilw using SQL query
    K Kariem Soudy

    hello there, you should write it like this string q = "SELECT collapsed_building.b_name,collapsed_building.b_desc FROM collapsed_building WHERE collapsed_building.b_name **LIKE '%" + crimewithdate.text2 + "%'"**; not like what you wrote...

    Web Developer @ Silverkey Egypt

    ASP.NET csharp database asp-net regex help

  • problem with ProfileBindings
    K Kariem Soudy

    i have a problem with ProfileBindings and extenders in AJAX and ASP.NET 3.5, i put a profile property in the web.config file and i set it in a webform CORRECTLY, in another webform i tried to bind this profile property with the ENABLED property of a DropShadowExtender like this:**

    Enabled="True" TargetControlID="Button1"> ProfilePropertyName="ProfileProperty" />

    **anything wrong about that????!!!!!!!!!!!!!!! it's not working, please help me with it... thnx in advance...

    Web Developer @ Silverkey Egypt

    ASP.NET help csharp asp-net question

  • a problem with Threading in ASP.NET
    K Kariem Soudy

    the page has been posted back and redrawn to the client, now the page is still, and there're some threads that run behind that page, every one has to put a list item in that listbox after it finishes its work, can i do that without refresh the page, or are there any other alternatives that i can solve this problem.....

    ASP.NET help csharp asp-net question

  • a problem with Threading in ASP.NET
    K Kariem Soudy

    it's a server-side control, i wanna make it just like AJAX scenario, plz help the problem is i can't refresh the page from other class defined in the page class, i pass the httpcontext to that class, and i have an error message tells me : cannot redirect the page after the http header has been written, how can i resolve this error help meeeeeeeeeee

    ASP.NET help csharp asp-net question

  • a problem with Threading in ASP.NET
    K Kariem Soudy

    i have a webform, with a button and a listbox, when i click on the button it should run many threads, and when each one finishes its work it should add an item in that listbox indicating that it's finished, so the problem is that i need to make a thread to add an item in a listbox when it's finished working, sould i need to refresh the page, or what...??? plz help me:((

    ASP.NET help csharp asp-net question

  • A program that runs with the shell
    K Kariem Soudy

    i need to know how to make a program runs with the shell with no need to log into my windows account to have this program running

    IT & Infrastructure linux tutorial

  • SqlDatasource Question...
    K Kariem Soudy

    when i use an SqlDatasource with a gridview control in a web form, is this "Online" or "Offline" mode according to ADO.NET 2.0 , thnx

    ASP.NET csharp question

  • do i have to install vista to use .NET framework 3.0 ??
    K Kariem Soudy

    yea, thnx dude, i appreciate it too much

    Windows API csharp dotnet question

  • do i have to install vista to use .NET framework 3.0 ??
    K Kariem Soudy

    can anyone tell me plz what all i have to do to run .net framework on my pc and also use WPF. thnx

    Windows API csharp dotnet 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