Forum: ASP.NET Mar 29th, 2008 |
| Replies: 2 Views: 1,712 |
Forum: ASP.NET Mar 28th, 2008 |
| Replies: 5 Views: 2,120 Re: onmoseover in asp.net 2.0 using javascrit This may not be the proper way,but serves the purpose.
When user mouseover on button it displays the image and when on mouseout hides the image.
aspx:
<script type="text/javascript">
function... |
Forum: ASP.NET Mar 27th, 2008 |
| Replies: 9 Views: 1,567 Re: Radiobutton Problem aspx
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" AutoGenerateColumns="False"
BackColor="White" BorderColor="#CC9966" BorderStyle="None" BorderWidth="1px"
... |
Forum: ASP.NET Mar 27th, 2008 |
| Replies: 9 Views: 1,567 Re: Radiobutton Problem Hi Bright,
I am at office,it may take 3 hours to reach home.I will post the solution without fail.
Thanks
ravichandra |
Forum: ASP.NET Mar 26th, 2008 |
| Replies: 3 Views: 494 Re: Datagrid Supplier:
<asp:LinkButton ID="lnkSupplier" Text='<%#Bind("column_Name") %>' runat="server" CommandName="SupplierLink" CommandArgument='<%#Bind("Column_Name")... |
Forum: ASP.NET Mar 26th, 2008 |
| Replies: 2 Views: 329 |
Forum: ASP.NET Mar 24th, 2008 |
| Replies: 5 Views: 353 Re: Storing the Trilateral Index Value But what if you want to create a substring array separated by more than one characters like '#$' or '#$%' ?
Please refer the following thread:
http://www.daniweb.com/forums/thread113322.html
Mr.... |
Forum: ASP.NET Mar 24th, 2008 |
| Replies: 5 Views: 353 Re: Storing the Trilateral Index Value string value=Label1.Text+"/"+Label2.Text+"/"+TextBox1.Text
INSERT INTO EMP(NAME)VALUES(value)
While retrieving the value, you can use
string retrievedValue = "data_table_field_value"
string []... |
Forum: ASP.NET Mar 24th, 2008 |
| Replies: 5 Views: 353 |
Forum: ASP.NET Mar 18th, 2008 |
| Replies: 2 Views: 420 |
Forum: ASP.NET Mar 17th, 2008 |
| Replies: 9 Views: 1,567 Radiobutton Problem I have implemented radio button in a gridview,where in user can select any one of the radiobutton in the gridview.If you need i can post the solution. |
Forum: ASP.NET Mar 14th, 2008 |
| Replies: 15 Views: 1,058 Re: How do I Evaluate Null value from database? The following can help you but i am sure whether this is the right way.
While selecting the column check for null values like
select ISNULL(class,-1) from student
If the column class contains null... |
Forum: ASP.NET Mar 13th, 2008 |
| Replies: 2 Views: 1,683 |
Forum: ASP.NET Mar 13th, 2008 |
| Replies: 1 Views: 783 |
Forum: ASP.NET Mar 13th, 2008 |
| Replies: 3 Views: 361 |
Forum: ASP.NET Mar 13th, 2008 |
| Replies: 2 Views: 2,374 Re: ButtonField in Gridview I think you need to populate the second grid by clicking a button in a gridrow.I have made Button Type=Button and you can change either to Link type/Image type according to your... |
Forum: ASP.NET Mar 12th, 2008 |
| Replies: 5 Views: 2,552 Re: GridView Change Color to Column Values I Tested and its working.
Please go through and it works.
Good luck
ASPX
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" Style="z-index: 100;
left: 211px;... |
Forum: ASP.NET Mar 10th, 2008 |
| Replies: 5 Views: 2,552 Re: GridView Change Color to Column Values The code need to be written in RowDataBound event:
I have taken SupplierID column for demo,change according to your need.Columns starts with 0 index.
Try this:
protected void... |
Forum: ASP.NET Mar 6th, 2008 |
| Replies: 3 Views: 1,039 Re: Grid view in asp.net using C# please visit www.asp.net .
http://www.asp.net/learn/data-access/
Mr. Scott goes through step by step about the control.Its one of the best tuttorial to learn and understand.
Good luck. |
Forum: ASP.NET Mar 5th, 2008 |
| Replies: 26 Views: 1,729 Re: sqldatasourse and gridview Try this:
protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
{
Page.RegisterClientScriptBlock("KEY", "<script language='javascript'>" + "confirm('Do you want... |