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
S

shah zad

@shah zad
About
Posts
30
Topics
23
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Windows Explorer shell context menu
    S shah zad

    By using wild card i added an item in Windows context menu of all files now i want to add exception for some files for example i want an option "abc" to show in every files context menu except .jpg files. can any one guide me how to add this exception and an example would really be appreciated. thanks in advance

    shezi

    C# tutorial linux

  • PIV Middleware
    S shah zad

    Hi, I am developing a C# app in which i want to use PIV Middleware but VS didn't accept its dll when i tried to make a reference. I don't have much experience in this type of programming, can some one guide me and refer to some sample codes or articles. Thanks in Advance

    shezi

    C# csharp visual-studio tutorial

  • xml parsing [modified]
    S shah zad

    hi i need guidance and help regarding following scenario for a web app using asp.net 1.1(C#) i am getting output of a web service that is xml but as a string now i want to put all the info in a table i am putting that output stream to a dataset and then try to utilize that but there is a problem that when i give that xml to a dataset as source dataset create more then one tables while i want to store all as a one table column also there are no dependencies in those table all have unique values so can some one guide me that if there is some better scenario or how i can merge dataset tables column in one table so that can be store able in a db table regards

    shezi

    modified on Thursday, March 6, 2008 12:54 AM

    ASP.NET csharp help asp-net database xml

  • xml data in a table
    S shah zad

    hi i need guidance and help regarding following scenario for a web app using asp.net 1.1(C#) i am getting output of a web service that is xml but as a string now i want to put all the info in a table i am putting that output stream to a dataset and then try to utilize that but there is a problem there that when i give that xml to a dataset as source dataset create more then one tables while i want to store all as a one table column also there are no dependencies in those table all have unique values so can some one guide me that if there is some better scenario or how i can merge dataset tables column in one table so that can be store able in a db table regards

    shezi

    ASP.NET csharp help asp-net database xml

  • tag cloud
    S shah zad

    i had seen it before. but that is a very simple case just count the products against a category, while i am storing tags in a single column seprated by space first need to get the indivisual tag and then its weight but got problem in making query. need guidance regarding how to fetch tags and their weight from single column of a table

    shezi

    modified on Monday, January 21, 2008 2:36:47 AM

    ASP.NET csharp tutorial asp-net database sql-server

  • tag cloud
    S shah zad

    hi can some one guide me how to build a tag cloud specially its data fetching. i am using asp.net 1.1 with c# and sql server 2k. details i have problem in counting the tags. i am storing the tags in a single column as varchar entry seprated by space, dont catch up with the idea how to get the distinct tags from single column and then got their weight as well thanks in advance

    shezi

    ASP.NET csharp tutorial asp-net database sql-server

  • tacking email
    S shah zad

    Hi i am building a web app in which i am sending emails to the site users through asp.net(C#) now i want to track two things 1-who opened that mail 2-who also clicked on some link in that email and come to my site if a user clicked some link and come to my site i traced that by the secret code in the url but didn't got any idea how to track if some one open that mail in his inbox, i searched the net but didnt got any idea can some one guide me how to do so i am using asp.net(C#) 1.1 any help will be highly appreciated regards

    shezi

    ASP.NET csharp tutorial asp-net help

  • Credit card processing
    S shah zad

    hi i am developing a wep app in ASP.net(C#) and want to process the credit card on my site through sterlingpayment can any one guide me how to integrate them and what is all process i have to follow if have some example of integration with this specific merchants. thanks in advance

    shezi

    ASP.NET tutorial csharp asp-net question

  • browser info
    S shah zad

    Thanks folks

    shezi

    ASP.NET sysadmin

  • How can i send email from my webform
    S shah zad

    i think your smtp have a prob try this its a working code hope your problem will solved and try to use "try/catch" in your code an then read the exception if code dont work that will explain you whats the problem..... try { MailMessage objMail; objMail = new MailMessage(); objMail.From = "Sender address"; objMail.To = "Recipient address"; objMail.Subject = "Subject of your mail"; objMail.BodyFormat = MailFormat.Html;//you can use text for text message objMail.Priority = MailPriority.High; objMail.Body = "Body of your mail"; SmtpMail.SmtpServer = "Your smtp server name"; SmtpMail.Send(objMail); objMail = null; } catch(Exception ex) { Response.Write(ex);//this will tell you the problem if got }

    shezi

    ASP.NET question help com

  • browser info
    S shah zad

    hi can any one tell me that is it possible to get the windows nt login information when he open our site in his browser as normally get his info like operating system etc through server variables regards

    shezi

    ASP.NET sysadmin

  • image properties
    S shah zad

    hi i am developing an app in which i have to place different size of images on different portions of a page based on there width and height for that i have to recognise there size b4 displaying and i dont have images too they are dynamically changed on there urls i have only there urls i used the following method b4 but it dont work for urls System.Drawing.Image fullSizeImg = System.Drawing.Image.FromFile("c:\abc.jpg"); then imgWidth = fullSizeImg.width; but it dont work for System.Drawing.Image fullSizeImg = System.Drawing.Image.FromFile("http://images.apple.com/itunesaffiliates/US/2005/12/6/NBC/180x150\_BattlestarGalactica.jpg"); can any one guide me in this regard or tell me if there is any alternative for this looking forward thanks

    shezi

    ASP.NET com graphics tutorial

  • Application call itself?
    S shah zad

    Actually i want my application to send birthday cards on the birth date of the member so i actually don't know what to call it exactly if u can explain some...... i m using asp.net (c#)

    shezi

    ASP.NET tutorial sysadmin question

  • Application call itself?
    S shah zad

    hi i want to make a web application which can do some thing like send some emails on the specific time automatically without calling the application by any one means at specific time server automatically call that file and that sends the email i didn't got any idea that how to do so can some guide me that how to do this thanks in advance regards

    shezi

    ASP.NET tutorial sysadmin question

  • url rewriting
    S shah zad

    hi! i am new to .net i m using asp.net 1.1 with c# can any one guide me how rewrite the url like i click on a category name and id is send it in url and its sub categories shown on the page again we click on some sub category we call the same page with the id of that sub category then again but if there are no further sub categories then products will shown now i am trying to do that the url looks some thing like this site url/category/sub category/..../product name while only one page is called again and again with just one parameter id (e-g example.com/cat.aspx?id=1) can any body guide me in this regard thanx in advance

    shezi

    ASP.NET csharp tutorial asp-net com question

  • Data Set
    S shah zad

    hi! can some one guide me how to get value from the column of a dataset as we get from datareader(i-e dr["String column name"]) thanks in advance regards

    shezi

    ASP.NET tutorial

  • recursive function output ..... [modified]
    S shah zad

    i m working with a recrsive function to implement a tree structure i got the following output 1 2 ---- 1 4 ---- 2 3 ---- 1 5 now i have a problem that i m unable to solve how can i handle the spaces so it will look something like this 1 --- 0  2 ---- 1   4 ---- 2  3 ---- 1 5 --- 0 regards shezi -- modified at 6:02 Wednesday 14th June, 2006

    ASP.NET data-structures help question

  • how to populate datagrid from dataset manually
    S shah zad

    hi! can any body guide me that how can i populate datagrid row by row that is i dont want ot use datagrid.datasource = dataset, datagrid.databind() .... instead i want it in the following senario(manually) populate a dataset then go through some loop check each row on each iteration and specify some criteria if it match then add that row to grid other wise skip it and move to the next row plz explain it with the help of code regards shezi

    ASP.NET tutorial css regex help question

  • adding rows manually in a datagrid to implement tree structure [modified]
    S shah zad

    hi! i m working with a recrsive function to implement a tree structure i got the following output 1 2 ---- 1 4 ---- 2 3 ---- 1 5 now i have a problem that i m unable to solve how can i handle the spaces so it will look something like this 1 --- 0  2 ---- 1   4 ---- 2  3 ---- 1 5 --- 0 second i want to put all this in a datagrid. the method i adobted is that i filled the datagrid with all the parent nodes (in example 1 and 5) and then thinking to add the recursive function returned values under the appropriate parent row (but dont know how to add that result in a datagrid) can any body guide me in this regard that weather its the right way to do it if so then how can i accomplish this (how to make the result a row and then add that to under there parent row in datagrid) or if there is some better way then guide me please regards shezi -- modified at 2:48 Wednesday 14th June, 2006

    ASP.NET tutorial data-structures help question

  • message board
    S shah zad

    hi! i m trying to build up a message board just like one i am placing this message using datagrid control. can any body tell me how can i implement the tree structure used in this dicussion board and if there is any open source of it is available please send me the details i m using asp.net(vb.net) regards shezi

    ASP.NET csharp asp-net data-structures 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