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

M A A Mehedi Hasan

@M A A Mehedi Hasan
About
Posts
38
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Prohibit Downloading from Non-registered user like Codeproject.com
    M M A A Mehedi Hasan

    Dear All, I just wondering how Codeproject.com prohibits non-registered users downloading any zip files attached in articles. For example, when I sign in and try to download any zip files attached in articles, I am able to download it. However, when I sign out and try to download any zip files simply I can not download. In both cases, the actual path of zip file seems transparent to user. How may I implement this feature (keeping download url transparent to user but prohibiting non-registered users to download) in my personal website? Any sort of suggestions, references, examples or articles are greatly appreciated. Sincerely Yours,

    Mehedi Hasan

    ASP.NET

  • Capturing VB6 event in C#.Net
    M M A A Mehedi Hasan

    Dear All, I have a VB6 Application which throws events. How can I capture these events in my another C#.Net Application? Please help me providing articles or links. Thanks in advance.

    Mehedi Hasan

    C# csharp question help

  • Export Datagrid to Excel file
    M M A A Mehedi Hasan

    Hello, if your DataGrid name is dgGrid then try the following code System.IO.StringWriter tw = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter hw = new System.Web.UI.HtmlTextWriter(tw); DataGrid dgGrid = new DataGrid(); dgGrid.DataSource = dsExport; // Get the HTML for the control. dgGrid.HeaderStyle.Font.Bold = true; dgGrid.DataBind(); dgGrid.RenderControl(hw); // Write the HTML back to the browser. Response.ContentType = "application/vnd.ms-excel"; this.EnableViewState = false; Response.Write(tw.ToString()); Response.End();

    Mehedi Hasan

    ASP.NET help question

  • How to run the project?,
    M M A A Mehedi Hasan

    Hi Magi, You have to send only dll and aspx files. Open Project->Copy Project from your IDE. From "Web Access Method:" Select "Front Page" and from "Copy:" select "only files needed to run this application" option.

    Mehedi Hasan

    ASP.NET design tutorial question learning

  • Crystal Report Problem
    M M A A Mehedi Hasan

    Hello Everyone, I want to display columns in crystal report dynamically. Suppose I have col1,col2 and col3 in crystal report I want to show col1,col2 and col3 sometimes and col1 and col2 othertimes depending on some criteria. How can I accomplish this task? Please give me suggestion.

    Mehedi Hasan

    ASP.NET question help

  • Encryption and decryption...........
    M M A A Mehedi Hasan

    Hi, An easy encryption and decryption method. public static string Encrypt(string valueToEncrypt) { byte []b; b = ASCIIEncoding.ASCII.GetBytes(valueToEncrypt); return Convert.ToBase64String(b); } public static string Decrypt(string valueToDecrypt) { byte []b; b = Convert.FromBase64String(valueToDecrypt); return ASCIIEncoding.ASCII.GetString(b); }

    Mehedi Hasan

    ASP.NET security help

  • memory
    M M A A Mehedi Hasan

    Heap

    Mehedi Hasan

    ASP.NET data-structures performance

  • Height of technical overseas !!!!!
    M M A A Mehedi Hasan

    Ctrl + S ! Ctrl + S !! Ctrl + S !!!

    Mehedi Hasan

    ASP.NET help

  • CONGRATS Bangladesh Tigers
    M M A A Mehedi Hasan

    Hello Friends, Bangladesh defeated India by 5 wickets in World Cup Cricket 2007. CONGRATS Bangladesh Tigers !!!

    Mehedi Hasan

    Bangladesh In Heart

    The Lounge

  • how to make select query to access view in other server
    M M A A Mehedi Hasan

    Dear Mr. Imran Khan, Let me describe your problem. You have two sql server. You want to query from these two server. If this is your problem. then you can use Linked Server. You will get more information about this in http://www.sqlteam.com[^]

    Mehedi Hasan

    Database csharp database asp-net sysadmin help

  • validate emails which is seperated with comma
    M M A A Mehedi Hasan

    Hey, Please visit the following links. http://regexlib.com/DisplayPatterns.aspx http://www.regular-expressions.info/ I hope u will get your answer there.

    Mehedi Hasan

    ASP.NET javascript help question

  • creating an online forum
    M M A A Mehedi Hasan

    Hey, Did u check this http://www.codeproject.com/useritems/JumpyForum.asp[^]

    Mehedi Hasan

    ASP.NET csharp help

  • asp.net-text editor
    M M A A Mehedi Hasan

    Hello friend, You cannot do this using asp.net textbox but u can take a look at this link. http://freetextbox.com/default.aspx[^]

    Mehedi Hasan

    ASP.NET csharp question asp-net help

  • Order of operations and Short circuit
    M M A A Mehedi Hasan

    Hello Friend, Happy Valentines Day. Before concluding anything about TSQL short circuiting, I would like to request you to visit http://www.sqlservercentral.com/faq/viewfaqanswer.asp?categoryid=3&faqid=360[^].

    Mehedi Hasan

    Database database sql-server sysadmin question announcement

  • How to get radio button values in sql 2000
    M M A A Mehedi Hasan

    Hello, You can use bit data type if your gender is limited to male/female. If your gender is more than 2 types i.e. male/female/unknown then you can use tinyint or int. Thanks

    Mehedi Hasan

    Database help question csharp database

  • select distinct On multiple fields
    M M A A Mehedi Hasan

    Hello, Did u try group by clause? If not then u may write in the following way to get the distinct value. SELECT FName,LName FROM YourTableName group by FName,LName

    Mehedi Hasan

    Database tutorial database

  • Online Radio
    M M A A Mehedi Hasan

    Hello Everyone, How can I develop a simple online radio using asp.net? Actually I'm looking for some cool tutorials. Please help me providing tutorials.

    Mehedi Hasan

    ASP.NET question csharp asp-net help

  • Extra Marital affairs....[Funny]
    M M A A Mehedi Hasan

    In one word awsome.

    Mehedi Hasan

    The Lounge question

  • text box selection
    M M A A Mehedi Hasan

    Hello, You will find a free textbox control here. You can use it to underline text in client side. http://freetextbox.com/default.aspx[^]

    Mehedi Hasan

    ASP.NET csharp question

  • Salam, please need some help to start ma new career
    M M A A Mehedi Hasan

    Olaikum Salam, hey you can try Beginning Asp Net 2.0 With Visual C#Net by Wrox Publication as a reference book.

    Mehedi Hasan

    ASP.NET csharp asp-net help tutorial 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