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
P

Parwej Ahamad

@Parwej Ahamad
About
Posts
731
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Asp.net, javascript : Textbox issue with chrome and firefox. pls help me out
    P Parwej Ahamad

    Issue with event keyword. Some browser are not support only "event" keyword. So try to use event called "onblur". It's opposite of onfocus: function getval() { document.getElementById('<%=textbox2.ClientID %>').value = document.getElementById('<%=textbox1.ClientID %>').value; }

    Parwej Ahamad

    ASP.NET help csharp java javascript asp-net

  • Generate PDF documents from a HTML page using ASP.NET
    P Parwej Ahamad

    Look at ITextSharp. Some sample code: http://am22tech.com/s/22/Blogs/post/2011/09/28/HTML-To-PDF-using-iTextSharp.aspx[^]

    Parwej Ahamad

    ASP.NET csharp html asp-net design sysadmin

  • How to send some data from an Asp.Net app to another Asp.Net app?
    P Parwej Ahamad

    Post data through the Service in other application.

    Parwej Ahamad

    ASP.NET csharp asp-net dotnet wcf com

  • DropDownList's SelectedIndexChanged event is not triggered
    P Parwej Ahamad

    You need to bind event "ddl_SelectedIndexChanged" with dropdown list.

    Parwej Ahamad

    ASP.NET help csharp database design

  • Find Full path all the Child node
    P Parwej Ahamad

    I think you can achieve through the self join, please follow below query:

    var query =
    from e1 in Employee
    join e2 in Employee on e1.ManagerID equals e2.ID
    select new
    {
    Employee = e1.FirstName + " " + e1.LastName,
    Manager = e2.FirstName + " " +e2.LastName
    };

    Parwej Ahamad

    ASP.NET

  • Is there a way to run a sample aspx file inside a precompiled_non-updatable website
    P Parwej Ahamad

    Yes possible, first publish on your local environment then copy the compiled page on specific local and reference dll in bin. I would be worked. Thanks, Parwej

    Parwej Ahamad

    ASP.NET help question sales workspace

  • href link that trigger multiview.ActivewViewIndex
    P Parwej Ahamad

    Pass ActiviewIndex in query string. is this not working?

    Parwej Ahamad

    ASP.NET database help question

  • how to redirect in a url?
    P Parwej Ahamad

    No Url will be: mydomain.com/signin/?returnurl=www.mydomain.com/myprofile/comment/post-guid-string

    Parwej Ahamad

    ASP.NET question com tutorial announcement

  • how to redirect in a url?
    P Parwej Ahamad

    Put your return url into the query string and after login check if you have return url query then to that url or redirect to default page ?ruturnur=your urllllllllllll

    Parwej Ahamad

    ASP.NET question com tutorial announcement

  • How to asp:Literal with more..?
    P Parwej Ahamad

    Through literal you can not do in css until you putting it into label or span or div. You can truncate your string in your code the you can display here. If you want to use in css then find very clear example to support most of the browser http://mattsnider.com/css-string-truncation-with-ellipsis/[^]

    Parwej Ahamad

    ASP.NET question database com tutorial announcement

  • Problem With List View
    P Parwej Ahamad

    Your given HTML doesn't contains that label. So where you placed that label, inside the listview or outside?

    Parwej Ahamad

    ASP.NET sysadmin help learning

  • Problem With List View
    P Parwej Ahamad

    Put this code in ItemDatabound event. first check item type then put that code.

    //In itemdatadatabound event
    if(e.Item.ItemType = ListViewItemType.DataItem )
    {
    Label lblTot = this.ListView1.FindControl("lblGrandTotal") as Label;
    if (lblTot != null)
    {
    lblTot.Text = totl.ToString();
    }

    Parwej Ahamad

    ASP.NET sysadmin help learning

  • open new windo without address bar
    P Parwej Ahamad

    Try:

    Open Full Screen Window

    Parwej Ahamad

    ASP.NET question

  • multipe forms in same page
    P Parwej Ahamad

    I think, you have to set ValidationGroup for Signin and Signup to check for respective submit.

    Parwej Ahamad

    ASP.NET csharp asp-net help question

  • web app places you on logon page after 3 minutes
    P Parwej Ahamad

    Verify Web.Config file, what the time is set for Form authentication tag?

    Parwej Ahamad

    ASP.NET csharp css sysadmin windows-admin question

  • how to solve the ScriptResource.axd exception problem?
    P Parwej Ahamad

    It's seems something issue with Data conversion. So check carefully for all data types wherever converting any input data. One more thing: Try to set the page attribute : EnableEventValidation="false"

    Parwej Ahamad

    ASP.NET design help csharp asp-net database

  • How to Create simple forum web site???
    P Parwej Ahamad

    Search on code project OR google you will found many articles, sample OR open source.

    Parwej Ahamad

    ASP.NET question help tutorial

  • Parameter 'xxxxx' not found in the collection
    P Parwej Ahamad

    REMOTE_ADDR not always return client IP address so it cause error. Go through with discussion http://stackoverflow.com/questions/735350/how-to-get-a-users-client-ip-address-in-asp-net[^] Hope so you will all constrains. Thanks

    Parwej Ahamad

    ASP.NET help database mysql question

  • How to call a asp.net Serverside function from javascript function
    P Parwej Ahamad

    Yes possible, set function attribute as Webmethod

    Parwej Ahamad

    ASP.NET tutorial csharp javascript asp-net database

  • Office Automation
    P Parwej Ahamad

    As per my knowledge, not possible.

    Parwej Ahamad

    ASP.NET sysadmin testing tools xml 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