ASP.net 2 ,,,i have a gridview using sqldatasource,, ,, when i click on delete the page just refreshe and the records never get deleted ,,,
Is there any way to figure out what's going on and how to fix it?
User Profile
Collapse
-
Gridview Delete Not Working and no Error
-
Thank you All Guys ,,, -
Thanks For Care,,,but i had two more questions
First .how to Check the Type of Elements
Second .i want get all textbox controls in a specified Panel ,,,
for example :
[HTML]<asp:Panel ID="Panel1" runat="server" Height="50px" Width="125px">
<asp:TextBox ID="TextBox2" runat="server"> </asp:TextBox>...Leave a comment:
-
Hide all controls in a panel in ASP.Net
Hi
Simply i want Hide all Textboxes in a Panel ,,, in asp.net
i can do it by C# :
[code=cpp]
foreach (Control ctrl in Panel1.Controls )
{
if (ctrl is TextBox)
{
((TextBox)(ctrl )).Visible = false;
}
}
[/code]
Can anyone tell me how to do in JavaScript? -
Hide all controls in a panel in ASP.Net
Hi
Simply i want Hide all Textboxes in a Panel ,,, in asp.net
i can do it by C# :
foreach (Control ctrl in Panel1.Controls )
{
if (ctrl is TextBox)
{
((TextBox)(ctrl )).Visible = false;
}
}
Can anyone tell me how to do in JavaScript? -
Hide all controls in a panel in ASP.Net (Take a look please)
Hi
Simply i want Hide all Textboxes in a Panel ,,, in asp.net
i can do it by C# :
[CODE=cpp] foreach (Control ctrl in Panel1.Controls )
{
if (ctrl is TextBox)
{
((TextBox)(ctrl )).Visible = false;
}
}
[/CODE] ... -
Why no one didnt answer me (GridView Filtering)
Hi
Look ,,,Theres GrdiView1 , Dropdownlist1 , TextBox1 And a button
Gridview1 Contain "FirstName . LastName" Columns ,,, i want Filter Gridview1 by using DropDownlist1 To Select which Column should be Filter And TextBox1 to define Filter Condition
im Using Asp.Net , C# , SqlDataSource,, ,thinkin i Have to use SqlDataSource.F ilterExpression...Leave a comment:
-
Advanced GridView Filtering
Hi
Look ,,,Theres GrdiView1 , Dropdownlist1 , TextBox1 And a button
Gridview1 Contain "FirstName . LastName" Columns ,,, i want Filter Gridview1 by using DropDownlist1 To Select which Column should be Filter And TextBox1 to define Filter Condition
im Using Asp.Net , C# , SqlDataSource,, ,thinkin i Have to use SqlDataSource.F ilterExpression Property...Leave a comment:
-
Sorting GRIDVIEW Automatically Asp.net C# (Take a Look Please)
I have a Gridview Which as you know it was sorted by Ascending by default.
Now i want Gridview to Sorting Descending On Load,,,
i want somthing like Below:
protected void Page_Load(objec t sender, EventArgs e)
{
Gridview1.Sortd irection = Descending;
}
Do you understand what im Saying?!
Asp.Net C#
Help Me if you can -
Binding a TextBox to Xml ASP.Net
Hi
i have an XML File Which Contain <title>Test</title> Element
I Want to Bind my Textbox to XML <title>Test</title>to Display & Edit Data ,,Without using Gridview, FormView, Repeater ,,,, im using VS2005 ASP.net C#
Is There AnyWay?? -
Binding a TextBox to Xml ASP.Net
Hi
i have an XML File Which Contain <title>Test</title>
I Want to Bind my Textbox to XML <title>Test</title>to Show & Edit Data Without using Gridview, FormView, Repeater ...,,,ASP.net C#
Is There AnyWay??? -
Binding TextBox to XML ASP.Net C#
Hi
i have an XML File Which Contain <title>Test</title>
I Want to Bind my Textbox Value to XML <title>Test</title> Without using Gridview, FormView, Repeater ...,,,Using ASP.net C#
Is There AnyWay??? -
screen Scraping of Current webpage ASP.net C#
i have a webpage and theres some Labels and a ;Button,,, i want to when button1 clicked take a screenshot of Current webpage instantly and save as a jpeg,,,using ASP.net C# JS
Can anyone help? -
Retrieve Location And Size of A WebControl in Asp.net
i want to take a Screenshot of a specified webControl in Asp.net C# im looking for somthing like "System.Windows .Forms Bounds" but i want retrieve Size and Location of a WebControl inside Webpage..
Anyone have any solution? -
Excusme i have another question ,,, is There anyway to Save dynamic control which was created at runtime, and use it like Control which created at Design Time in ASP.Net
i Think not,,, Right???Leave a comment:
-
im using ASP.Net C# ,,, i want to use it at PageLoad,,, and i haven`t any tried,,im an Amateur
Any thanks for CareLeave a comment:
-
Add menu item at runtime
i want to add item to a created Menu At RunTime ,,, can anyone help me? -
FAXCOMLib Cancel button (C#)
hi
im using FAXCOMLib to Send Fax using C# ASP.Net
i want to know how i can Cancel a FaxJob ?
Anyone Can help? -
Hide a control for N seconds
I Want to Hide a Label for 5 Seconds Then Show it After 5 Seconds ,,,
Using ASP.NET & JavaScript
Can Anyone Help me?? -
Save ASPX Page As a PDF File
I want to Convert my ASPX page to PDF .
Anyone have any solution?
Thanks in advance
No activity results to display
Show More
Leave a comment: