Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Pure VPN - Up to 27 Months
vgp
Updated:
Friday at 8:10 AM
එක පැකේජ් එකයි මාසෙටම Unlimited Internet. තාමත් DATA CARD දාන්න සල්ලි වියදම් කරනවද? අඩුම මිලට අපෙන්.
sayuru bandara
Updated:
Tuesday at 12:30 PM
Ad icon
ඉන්ටර්නෙට් එකෙන් හරියටම සල්ලි හොයන්න සහ Success වෙන්න කැමතිද? 🚀 (E-Money & Success Stories)
siri sumana
Updated:
May 30, 2026
Gemini AI PRO 18 months Offer
Hawaka
Updated:
May 27, 2026
Ad icon
koko account
DasunEranga
Updated:
May 27, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
General
ElaKiri Talk!
ASP.net Javascript with c# problem
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="ishwick" data-source="post: 18987871" data-attributes="member: 411387"><p><strong><p style="text-align: center"><span style="font-size: 15px"><span style="color: Blue"></span></span></p></strong></p><p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: Blue">මම උබේ ප්රශ්නේ වරද්දලද මන්ද තෙරුන් ගත්තේ. උබට ඕනේ files ටික delete කරන්න නේද server එකෙන්? මම තේරුම් ගත්තේ වෙන විදිහකට.</span></span></p></strong></p><p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: Blue"></span></span></p></strong></p><p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: Blue"></span></span></p></strong></p><p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: Blue">මෙහෙමයි click event එකේදී row එකේ row index එක ගන්නේ.</span></span></p><p></strong>[CODE]</p><p> protected void dgvNameHere_RowCreated(object sender, GridViewRowEventArgs e)</p><p> {</p><p> if (e.Row.RowType == DataControlRowType.DataRow)</p><p> {</p><p> LinkButton btnD = (LinkButton)e.Row.Cells[1].Controls[1];</p><p> btnD.CommandArgument = e.Row.RowIndex.ToString();</p><p></p><p> }</p><p> }</p><p></p><p>[/CODE]</p><p></p><p><strong><p style="text-align: center"><span style="font-size: 15px"><span style="color: Blue">ඒ button එකට command එකක් දෙන්න Grid එක හදද්දී. මම මෙතැනදී දෙනවා bDelete කියල</span></span></p></strong></p><p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: Blue"></span></span></p></strong></p><p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: Blue">bDelete එකට code එක </span></span></p><p></strong>[CODE]</p><p> protected void dgvNameHere_RowCommand(object sender, GridViewCommandEventArgs e)</p><p> {</p><p>int i = Convert.ToInt32(e.CommandArgument);</p><p> GridViewRow rw = dgvTransfers.Rows[Convert.ToInt32(e.CommandArgument)];</p><p> if (e.CommandName == "bDelete")</p><p> {</p><p>Code goes here</p><p>}</p><p>[/CODE]</p><p></p><p><span style="font-size: 15px"><strong><p style="text-align: center"><span style="color: blue">Code goes here එකට DB එකෙන් delete වෙන code ටික ලියන්න දැන් තියනවා වගේ.</span></p></strong></span></p><p style="text-align: center"><span style="font-size: 15px"><strong><span style="color: blue">File එක delete කරන්නේ මෙහෙම </span></p><p></strong></span></p><p>[CODE]File.Delete(fullPath);[/CODE]</p><p></p><p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: blue">මේක ඔයාගේ අර DB එකෙන් මකන code එකට පස්සේ දාන්න. fullpath කියන තැනට relative path එක දෙන්න delete වෙන්න ඕනේ image එකේ. </span></span></strong></p> <p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: blue"></span></span></strong></p> <p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: blue">ඔයාට මෙහෙම හරියයි </span></span></strong></p><p></p><p>[CODE]</p><p>File.Delete(relative path + dgvNameHere.Rows[i].Cells[8].Text);</p><p>[/CODE]</p><p></p><p style="text-align: center"><strong><span style="font-size: 15px"><span style="color: blue">උඩින් මේක use කරන්න </span></span></strong></p><p></p><p>[CODE]</p><p>using System.IO;</p><p>[/CODE]</p></blockquote><p></p>
[QUOTE="ishwick, post: 18987871, member: 411387"] [B][CENTER][SIZE="4"][COLOR="Blue"] මම උබේ ප්රශ්නේ වරද්දලද මන්ද තෙරුන් ගත්තේ. උබට ඕනේ files ටික delete කරන්න නේද server එකෙන්? මම තේරුම් ගත්තේ වෙන විදිහකට. මෙහෙමයි click event එකේදී row එකේ row index එක ගන්නේ.[/COLOR][/SIZE][/CENTER][/B] [CODE] protected void dgvNameHere_RowCreated(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { LinkButton btnD = (LinkButton)e.Row.Cells[1].Controls[1]; btnD.CommandArgument = e.Row.RowIndex.ToString(); } } [/CODE] [B][CENTER][SIZE="4"][COLOR="Blue"]ඒ button එකට command එකක් දෙන්න Grid එක හදද්දී. මම මෙතැනදී දෙනවා bDelete කියල bDelete එකට code එක [/COLOR][/SIZE][/CENTER][/B] [CODE] protected void dgvNameHere_RowCommand(object sender, GridViewCommandEventArgs e) { int i = Convert.ToInt32(e.CommandArgument); GridViewRow rw = dgvTransfers.Rows[Convert.ToInt32(e.CommandArgument)]; if (e.CommandName == "bDelete") { Code goes here } [/CODE] [SIZE="4"][B][CENTER][COLOR="blue"]Code goes here එකට DB එකෙන් delete වෙන code ටික ලියන්න දැන් තියනවා වගේ. File එක delete කරන්නේ මෙහෙම [/COLOR][/CENTER][/B][/SIZE] [CODE]File.Delete(fullPath);[/CODE] [CENTER][B][SIZE="4"][COLOR="blue"]මේක ඔයාගේ අර DB එකෙන් මකන code එකට පස්සේ දාන්න. fullpath කියන තැනට relative path එක දෙන්න delete වෙන්න ඕනේ image එකේ. ඔයාට මෙහෙම හරියයි [/COLOR][/SIZE][/B][/CENTER] [CODE] File.Delete(relative path + dgvNameHere.Rows[i].Cells[8].Text); [/CODE] [CENTER][B][SIZE="4"][COLOR="blue"]උඩින් මේක use කරන්න [/COLOR][/SIZE][/B][/CENTER] [CODE] using System.IO; [/CODE] [/QUOTE]
Insert quotes…
Verification
Dahaya deken beduwama keeyada?
Post reply
Top
Bottom