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
J

jai 123

@jai 123
About
Posts
48
Topics
26
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • gridview column width
    J jai 123

    I am in a problem. I have to show the values of database in the grid and I want to print this web page. But problem is when user is entering the data like(pppppppppppppppppppppppppppppppppppp) so the column width is automatically increase like below: name id addd class lllllllllllllllllllllllllllllllllllllllllllll 123 jkkkk pppp I want like this name id add class lllllllllll 234 fff rrrr lllllllllll lllllllllllll Please give me steps to fix the width and if the name is long the next part will come in next line.

    jai

    ASP.NET help

  • gridview column width
    J jai 123

    hi to all, I want my gridview columns to have fixed width. Even though data is long, i want it to be shown only till the width permits,remaining in next line. plase help me.

    jai

    ASP.NET help

  • datagrid paging
    J jai 123

    hi, for paging in asp 1.1 we will give like this public void mouseclick(object sender, DataGridPageChangedEventArgs e) { datagrid.CurrentPageIndex = e.NewPageIndex; datagrid.DataBind(); } in asp2.0, dont want to give like this

    jai

    ASP.NET csharp asp-net tutorial

  • datagrid paging
    J jai 123

    hi to all, how to use datagrid paging in asp.net2.0.

    jai

    ASP.NET csharp asp-net tutorial

  • How to fix the datagrid size.
    J jai 123

    hi, In datagrid how to fix the width of a particular column.

    jai

    ASP.NET help tutorial

  • How to fix the datagrid size.
    J jai 123

    hi, I want do display a small paragraph in a datagrid, how to fix the datagrid width in asp 2.0.

    jai

    ASP.NET help tutorial

  • Images delete.
    J jai 123

    hi, I am using the below coding to thumbnail creation, this coding is saving both the original image and the thumbnail image. I don’t want the original image. How to delete the original image. Please help me. private void btnUpload_Click(object sender, System.EventArgs e) { // Initialize variables string sSavePath; string sThumbExtension; int intThumbWidth; int intThumbHeight; // Set constant values sSavePath = "images/"; sThumbExtension = "_thumb"; intThumbWidth = 160; intThumbHeight = 120; // If file field isn’t empty if (filUpload.PostedFile != null) { // Check file size (mustn’t be 0) HttpPostedFile myFile = filUpload.PostedFile; int nFileLen = myFile.ContentLength; if (nFileLen == 0) { lblOutput.Text = "No file was uploaded."; return; } // Check file extension (must be JPG) if (System.IO.Path.GetExtension(myFile.FileName).ToLower() != ".jpg") { lblOutput.Text = "The file must have an extension of JPG"; return; } // Read file into a data stream byte[] myData = new Byte[nFileLen]; myFile.InputStream.Read(myData,0,nFileLen); // Make sure a duplicate file doesn’t exist. If it does, keep on appending an // incremental numeric until it is unique string sFilename = System.IO.Path.GetFileName(myFile.FileName); int file_append = 0; while (System.IO.File.Exists(Server.MapPath(sSavePath + sFilename))) { file_append++; sFilename = System.IO.Path.GetFileNameWithoutExtension(myFile.FileName) + file_append.ToString() + ".jpg"; } // Save the stream to disk System.IO.FileStream newFile = new System.IO.FileStream(Server.MapPath(sSavePath + sFilename), System.IO.FileMode.Create); newFile.Write(myData,0, myData.Length); newFile.Close(); // Check whether the file is really a JPEG by opening it System.Drawing.Image.GetThumbnailImageAbort myCallBack = new System.Drawing.Image.GetThumbnailImageAbort(ThumbnailCallback); Bitmap myBitmap; try { myBitmap = new Bitmap(Server.MapPath(sSavePath + sFilename)); // If jpg file is a jpeg, create a thumbnail filename that is uniqu

    ASP.NET graphics sysadmin help tutorial

  • displaying text in lable
    J jai 123

    hi Pete , I all ready mention the width, it is not working.

    jai prakash

    ASP.NET help tutorial

  • displaying text in lable
    J jai 123

    How to display a paragraph of text, in a label. It want the text should be displayed I a particular width. Please help me.

    jai prakash

    ASP.NET help tutorial

  • Uploaded image into thumbnail
    J jai 123

    hi Abhijit Jana, what should i want to give in sThumbExtension = " ";

    jai prakash

    ASP.NET csharp asp-net help

  • Uploaded image into thumbnail
    J jai 123

    hi Abhijit Jana, please send me the html coding also thanks

    jai prakash

    ASP.NET csharp asp-net help

  • Uploaded image into thumbnail
    J jai 123

    sorry ya,here after i will not do it. I cont get a clear idea from that link. Is there any other link for full code. Please help me.

    jai

    ASP.NET csharp asp-net help

  • Uploaded image into thumbnail
    J jai 123

    hi to all, I am using asp.net 2.0, in that I designed a webpage for uploading an image. If the user uploads an image it should be automatically change in to thumbnail and it is displayed in that website. I searched in Google but I didn’t get the proper coding for that. So, please help.

    jai prakash

    ASP.NET csharp asp-net help

  • Uploading a image into thumbnail
    J jai 123

    hi to all, I am using asp.net 2.0, in that I designed a webpage for uploading an image. If the user uploads an image it should be automatically change in to thumbnail and it is displayed in that website. I searched in Google but I didn’t get the proper coding for that. So, please help.

    jai prakash

    ASP.NET csharp asp-net help

  • image
    J jai 123

    thanks navaneeth.

    jai prakash

    ASP.NET csharp asp-net help

  • image
    J jai 123

    I designed a webpage in asp.net with c#,for online shopping.in that the list of products(images) are displayed.at first the images size are small in size. when the user move the mouse over the particular product, the particular product image size should be en-large and it is shown as big image. how it is possible. please help me.

    jai prakash

    ASP.NET csharp asp-net help

  • RSS feeds
    J jai 123

    hi, i searched in google but i cont get a clear idea about that,please help me.

    jai prakash

    ASP.NET csharp asp-net help tutorial

  • RSS feeds
    J jai 123

    Hi to all, I am new to ASP.NET RSS feeds, I don’t know how to implement in a webpage. How to install the ASP.NET RSS Toolkit. Please help me.

    jai prakash

    ASP.NET csharp asp-net help tutorial

  • RSS- Feeds
    J jai 123

    Hi to all, I am developing a website for ”best offers” using asp.net 1.1 with sql server 2000. It is the site for the offers. I will see the offers available in the other website and I will display the offers in best offers website. In that I am manually inserting the offers in to the database. Using RSS-Feeds it is possible to automatically inserting the offers in to the website or not, please tells me. With regards jai

    jai prakash

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

  • dropdownlist with out page refresh
    J jai 123

    hi, I am using .net 2005 ajax enabled website. It kept two dropdownlist, if I select a value in the first dropdownlist, the value related to that should loaded in the second dropdownlist with out page re-loading(refresh). How to do this without page loading. please help me,

    jai prakash

    ASP.NET csharp help tutorial
  • Login

  • Don't have an account? Register

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