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
B

B87

@B87
About
Posts
44
Topics
27
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Duration of audio files
    B B87

    Hi friends, Is it possible to find duration of an audio file? if so please guide me with information. :sigh:

    ASP.NET tutorial question

  • debugging BHO
    B B87

    [Message Deleted]

    Web Development csharp visual-studio com debugging tutorial

  • Store file in particular location
    B B87

    Hi friends, I am using the following code to read a table and store the table as a text file it works fine but i want to store the text file in a specific location according to need,any function to do it?By default it is storing in desktop how to change it? StringBuilder str = new StringBuilder(); for (int i = 0; i <= ds.Tables[0].Rows.Count - 1; i++) { for (int j = 0; j <= ds.Tables[0].Columns.Count - 1; j++) { str.Append(ds.Tables[0].Rows[i][j].ToString()); } str.Append(Environment.NewLine); } Response.Clear(); Response.AddHeader("content-disposition", "attachment;filename=FileName.m3u"); Response.Charset = ""; Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.ContentType = "application/vnd.txt"; System.IO.StringWriter stringWrite = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite); Response.Write(str.ToString()); Response.End();

    ASP.NET design tutorial question workspace

  • Problem with dynamic radio button [modified]
    B B87

    Hi freinds, Iam creating radio buttons at runtime it is working fine in internet explorer but with firefox it is very difficult to select radio button. I am using ASP.NET c#,version 2.0 this is the code iam using, RadioButton rd = new RadioButton(); rd.ID = "id" + i.ToString(); rd.Text = ans[i]; rd.GroupName = "dynrd"; And binding needed RB to Panel like this, Panel1.Controls.Add(rd); How to solve it....I can select radio button but it is very difficult to select.

    modified on Monday, December 22, 2008 8:43 AM

    ASP.NET csharp asp-net wpf wcf help

  • Multiuser voting
    B B87

    Thats k,no problem i goin to now something.... I will try it....

    ASP.NET security tutorial

  • Multiuser voting
    B B87

    Thanx, Thats 100% true.

    ASP.NET security tutorial

  • Multiuser voting
    B B87

    Thanx Christian Graus, It will bw usefull for me if u give me link that can guide me on how to write cookie. :)

    ASP.NET security tutorial

  • Multiuser voting
    B B87

    Hi friends, I have created voting system every user can vote not only registered users,so i want to add some security to it,i need some ideas on how to prevent multiuser voting. I dont know exactly may be like checking cookies r session r something else.

    ASP.NET security tutorial

  • Embded media player
    B B87

    Hi friends, I have add a embded windows media player in my site using following code, &lt;object id="wmp" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" style="width: 475px; height: 367px;" type="application/x-oleobject" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/"> <param name="URL" value="<%=url_filename %>"/> <param name="enabled" value="True"/> <param name="AutoStart" value="True"/> <param name="PlayCount" value="0"/> <param name="Volume" value="50"/> <param name="balance" value="0"/> <param name="Rate" value="1.0"/> <param name="Mute" value="False"/> <param name="fullScreen" value="False"/> <param name="uiMode" value="full"/> <param name="ShowStatusBar" value="True" /> <param name="SendPlayStateChangeEvents" value="True" /> <param name="autorewind" value="True" /> </object> But its not supporting many formats is there is any way to code such that it will accept some additional formats and one more problem is i uploaded this in server but some formats which can play in my system cant supported in other systems. :confused:

    Web Development com sysadmin help

  • Session checking
    B B87

    Hi friends, I have created voting application,i have almost finished it but i should check that one user should vote once by getting his session any idea for this.... Checking IP address will prevent other users voting so i need to take user browsers session or some other ideas for this method.....

    C#

  • File Upolad
    B B87

    Hi, Thanx for replying,i am sure that i have given the right path i have checked many times. Is there is any other way to do the upload.

    C# sysadmin help tutorial

  • File Upolad
    B B87

    Hi, I need to upload file in a folder at FTP server,i have already posted this but i need a coding guide not a software for this. The code i used is, txtfilurl.Text = FileUpload1.PostedFile.FileName; FileInfo filename = new FileInfo(txtfilurl.Text); FtpWebRequest request = (FtpWebRequest)WebRequest.Create(txtaddr.Text + "/" + filename.Name); request.Method = WebRequestMethods.Ftp.UploadFile; request.Credentials = new NetworkCredential(txtuser.Text, txtpass.Text); request.KeepAlive = false; request.UseBinary = true; Stream ftpstream = request.GetRequestStream();//--->This line shows the error FileStream file = File.OpenRead(txtfilurl.Text); int len = 1024; byte[] buff = new byte[len]; int bytesread = 0; do { bytesread = file.Read(buff, 0, len); ftpstream.Write(buff, 0, bytesread); } while (bytesread != 0); file.Close(); ftpstream.Close(); Error msg is:Web exception The remote server returned an error: (550) File unavailable (e.g., file not found, no access).

    C# sysadmin help tutorial

  • File upload to FTP server
    B B87

    Thank u for ur suggestion i will look for it....

    C# sysadmin help

  • File upload to FTP server
    B B87

    Hi friends, Iam getting an error while uploading a file to server like this, The remote server returned an error: (550) File unavailable (e.g., file not found, no access) The following line shows the error, Stream ftpstream = request.GetRequestStream(); Any suggestions for this :^)

    C# sysadmin help

  • [Message Deleted]
    B B87

    [Message Deleted]

    C#

  • Video Player
    B B87

    Hi friends, Is it possible to create player which can play all formats of video files using c#.If so give me some suggestion to do that.

    C# csharp

  • Removing components
    B B87

    Hi, Iam getting HTML code from one of my webpage,i have to use that in another page but before that i have to remove some components and take only one table from that page.Is it possible to do this?any sample pgm for this?

    C# html question

  • Fetch HTML code
    B B87

    Hi, I have multiline textbox which will has input as HTML code,How to fetch a particular data from that?

    C# html tutorial question

  • Image display
    B B87

    Hi guys, any idea to display image in webpage directly from database (image control need url) i want to display it without url is it possible? or any other way to do this?

    C# database question

  • Picture box
    B B87

    Then any idea to display image in webpage directly from database (image control need url) i want to display without url is it possible?

    C# design regex help
  • Login

  • Don't have an account? Register

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