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
M

Muhammad Mazhar

@Muhammad Mazhar
About
Posts
90
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • RSS FEED
    M Muhammad Mazhar

    You can get some know how of RSS by doing some Googling. For example try Wikipedia to get an idea of RSS. In ASP.NET 4.0 there is built in support for doing RSS syndication. Use MSDN to find code samples to generate and read RSS.

    I Web Development Free Lancer
    Share your experience with others Check my Blog...

    ASP.NET tutorial question

  • child meta tags
    M Muhammad Mazhar

    Simply place a content place holder in the head section of your master page. Then on your child pages go to design view and select header placeholder and choose custom contents and then provide your child related meta tags in there.

    I Web Development Free Lancer
    Share your experience with others Check my Blog...

    ASP.NET question

  • hide ajax files
    M Muhammad Mazhar

    Try using some encryption or obfuscation method to secure your client side javascript.

    I Web Development Free Lancer
    Share your experience with others Check my Blog...

    ASP.NET javascript css tools help question

  • web application version
    M Muhammad Mazhar

    Place it in web.config in app settings section. Then you will be able to read it easily in code like

    ConfigurationManager.AppSettings["YourApplicationName:VersionInfo"]

    I Web Development Free Lancer
    Share your experience with others Check my Blog...

    ASP.NET question announcement

  • Send SMS in asp.net
    M Muhammad Mazhar

    I believe you will be required to have your custom SMS server type thing. For example some custom piece of software running on some septate machine that could pick alerts from your online database after certain intervals and the flush them out in SMS form. BTW you can also do another trick and that is if your mobile service providers support Email message using mobile phone number then you can simply trigger an Email with mobile number as to address while message content in subject of Email. This Email will be delivered as SMS.

    I Web Development Free Lancer
    Share your experience with others Check my Blog...

    C# csharp asp-net tutorial question

  • ASP C# WebSite to load a simple CSV File
    M Muhammad Mazhar

    Try mapping virtual path to physical path using Server object. For example where you are doing

    string pathName = "\\td47vc\\public\\Joe\\ASP\\Test";

    instead do it something like

    string pathName = Server.MapPath("~/Joe/Asp/Test.csv");

    Where you need to make sure you are passing correct virtual path to MapPath call. You need to specify it relative to your application root.

    I Web Development Free Lancer
    Share your experience with others Check my Blog...

    C# sysadmin csharp help

  • Suggestions about source control hosting
    M Muhammad Mazhar

    Hello Folks I am looking for some suggestions about source control hosting, preferably SVN with some bug tracking software(like Bugzilla). Right now I am reviewing Assembla and XPDEV. Requirements are to get low cost hosting for a small team of less then 10 developers. XPDEV package for small teams seems more appealing to me while on the other hand Assembla seems more mature. I looked into LIMITED METERED package of assembla but it seems little bit too tight. Is there any one who have some experience with these sites. I would be thankful if you can share your experience with me. Any suggestions about any other good, reliable and low cost SVN hosting for small teams. Here are the requirements Users: less then 10 Source Control: SVN BUG Tracking System Required: Yes Maximum Number of Projects and repos: less then 5 Thanks Mazhar

    I Web Development Free Lancer
    Share your experience with others Check my Blog...

    IT & Infrastructure collaboration css sharepoint com hosting

  • Detecting Weekend dates between two given dates
    M Muhammad Mazhar

    Code sample is not possiable because right now I am away from my desktop, here is a PHP example link. It will give you enough idea about solution http://bytes.com/topic/php/answers/447768-how-do-you-get-list-all-dates-between-two-dates-more-than-day-apart[^]

    Share your experience with others Check my Blog...

    ASP.NET help tutorial

  • Read binary of .RAW file as image
    M Muhammad Mazhar

    Right now I am at some remote location so its not possible for me to provide some of my own code sample rather I googled and found a suitable example you can try that http://msdotnetsupport.blogspot.com/2009/04/converting-blob-data-from-sql-server-to.html[^]

    Share your experience with others Check my Blog...

    ASP.NET database help question

  • problem due to use of modalpopupExtender
    M Muhammad Mazhar

    debug it carefully sounds like something is getting mixed up most probably scripts.

    Share your experience with others Check my Blog...

    ASP.NET help

  • Databinding
    M Muhammad Mazhar

    Databinding is a great feature, a base to zero code tricks. If you follow rules properly you will found it very helpfull and very thin front end pages.

    Share your experience with others Check my Blog...

    ASP.NET csharp asp-net help question discussion

  • use windows usercontrol in web application
    M Muhammad Mazhar

    This will require every client using page with user control must have .NET installed.

    Share your experience with others Check my Blog...

    ASP.NET com help

  • AjaxModalPopup clicking OK button ,should reatin focus on textbox
    M Muhammad Mazhar

    try putting some javascript to change foucs on OnClientClick event of OK button

    Share your experience with others Check my Blog...

    ASP.NET javascript help tutorial question

  • Problem with JavaScript
    M Muhammad Mazhar

    in page load method put following code

    ddlEmp.Attributes.Add("onchange","showAlert(this)");

    then add following javascript on your page

    function showAlert(ele)
    {
    alert(ele.value);
    }

    Share your experience with others Check my Blog...

    ASP.NET javascript database help

  • FooterTemplate in Gridview.
    M Muhammad Mazhar

    Try alternating row template with repeater and output desired HTML.

    Share your experience with others Check my Blog...

    ASP.NET help

  • parsing of rss url using asp.net
    M Muhammad Mazhar

    .NET 3.5 WCF provides syndication support for RSS/ATOM feeds. All you need is to create a SyndicationFeed object with available URL and it will read ever thing from desired URL. Then you bind readed items to some repeater and render them in some suitable form.

    Share your experience with others Check my Blog...

    ASP.NET tutorial csharp asp-net com json

  • Read binary of .RAW file as image
    M Muhammad Mazhar

    Normally when storing images in databases blobs are used. Simply load data in memory stream and then create bitmap object from that stream, save a temp image and built a URL to that new temp image and then anchor it on desired location.

    Share your experience with others Check my Blog...

    ASP.NET database help question

  • can ajax run if javascript is disabled on client browser
    M Muhammad Mazhar

    No, javascript is mandatory for AJAX and must be enabled on browser.

    Share your experience with others Check my Blog...

    ASP.NET javascript sysadmin xml

  • adding table to div at runtime.. but when i want to access it using findcontrol method its returning null
    M Muhammad Mazhar

    HTML elements containing runat server attribute can be accessed on server side. You can give a try by providing id and runat=server on your table being added.

    Share your experience with others Check my Blog...

    ASP.NET sysadmin

  • swf embed fails in firefox
    M Muhammad Mazhar

    make sure flash plugin is installed on fire fox.

    Share your experience with others Check my Blog...

    ASP.NET com adobe question announcement
  • Login

  • Don't have an account? Register

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