|
msdn.microsoft.com/en-us/asp.net/aa336567.aspx
|
|
|
|
|
Thanks Gayani
Thanks a lot for your great suggestion .it works code is 100% currect .
but now i have one more prob. for you .plz advice .
actually now i can see the path of the images at page third. but i want to set the path at two image control at the page .how i can do it.because we are using collection how i can retrive images one by one.
thanks ...gaurav
|
|
|
|
|
What is this ? You could have followed the same thread rather than creating a new one. Atleast you can link to the other discussion (not recommended), so people who reads your this post won't get confused.
Also don't address question to a single person. He might be great, but there will other people who are willing to help you but never do as you addressed the post to someone else.
|
|
|
|
|
ok sorry
i feel sorry from heart .
thanks for guiding me.
i will never repeat it.
thanks...
gaurav
|
|
|
|
|
Hi i am new to window service concept...,
I am using vs2008...,
In new project file where to i can find windows service template file to create?,
Under Visual studio installed templates:
I am getting only Windows form application,WPF application,Console,WPF custom control library,windows forms control library,class library,wpf browser appli,wpf user control library...,
In that which one i have to select?,
Thanks & Regards,
NeW OnE,
please don't forget to vote on the post
|
|
|
|
|
better try the visual studio forum of TCP for these questions
|
|
|
|
|
how to store ,retrieve xml files into database by using webservices in .net? plz direct me.
|
|
|
|
|
I had set the tooltip for a hyperlink inside a html table in code behind Page_Load and thought it will work but it didn't.So how to make it work from code behind?.
I am too late but i will never give up
|
|
|
|
|
Post your code
please don't forget to vote on the post that helped you.
|
|
|
|
|
I don't have the code in this computer.But you can simply try it by
1-creating a page
2-add asp:hyperlink control
3- in code behind set the tooltip property for the Hyperlink control in the page_load event handler to any value like "good".
If it works with you please tell me.
I am too late but i will never give up
|
|
|
|
|
I tried the steps... But I am able to see the tooltip.
May be you can try like,
C#:
HyperLink1.Attributes.Add("title","Good");
VB:
HyperLink1.Attributes.Add("title","Good")
here is "title" is the attribute used in HTML to show the tooltip.
|
|
|
|
|
Hi,
I observed it is working in Firefox browser without any problems?!What could prevent it from working in IE?
The aspx code is as following:
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="Server">
<div style=" text-align:center; padding-top:100px;">
<table>
<tr>
<td><div class="Table_01">
<div class="str3-01">
<img src="images/str3_01.gif" width="530" height="49" alt="">
</div>
<div class="str3-02">
<img src="images/str3_02.gif" width="198" height="79" alt="">
</div>
<div class="str3-03">
<asp:Hyperlink NavigateUrl="../Managers/Managers.aspx?ID={0}" runat="server" id="a1" ToolTip="good" >
<img src="images/str3_03.gif" width="139" height="29" border="0" alt=""></asp:Hyperlink>
</div>
<div class="str3-04">
Iam trying setting the tooltip for the a1 hyperlink in codebehind.I tried using AddAttribute but it didn't work.
I am too late but i will never give up
|
|
|
|
|
I made the test my self inside a table and it works fine.
Then I add the page to the master page and it also works fine.
It seems that the page need debugging to find what prevent the tooltip from working.
I am too late but i will never give up
|
|
|
|
|
Dear All
I am generating reports in MS Word Format from Crystal Report built in Visual Studio 2005. The problem is that I have to change the formatting of the report, once it is exported to word file but the exported word file containing so may frames and due to these frames, I am unable to format the word file.
Please give me some solution to remove frmaes from word file or tell me some settings in the crystal report at the design time to generate report without frames.
Waiting for your earliest reply.
Regards
Vivek
|
|
|
|
|
I have a ListBox and a button
on clicking the listbox item and then button a page should be opened
pages should be opened respective to the list item
|
|
|
|
|
kiranreddya wrote: on clicking the listbox item and then button a page should be opened
pages should be opened respective to the list item
How many items are there in ListBox?
Do you have number of pages respective to that items?
Have you tried your self for a single item?
What problem are you getting ?
please don't forget to vote on the post that helped you.
|
|
|
|
|
there are 6 items in the list box
I have respective pages for each item
I have tried it for one item
but i am unable to get it for more items
|
|
|
|
|
Post your code that you implemented?
please don't forget to vote on the post that helped you.
|
|
|
|
|
Response.Write("yourPageNameHere");
|
|
|
|
|
I have a button too for opening
|
|
|
|
|
I have 4 datatable may be later in runtime it will come more than that...,
Now each datatble having first row and first cell is MID...,
Now i want to check all the datatables first row first cell...,
If its same values, then those datatables have to come in one folder..,
Else it have to create another folder and those datatble have to come in that folder...,
Example like this my datatble is there:
First Datatable
MID Name Year
1 E1 2000
1 E1 2002
Second Datatable:
MID Name Year
1 E2 2001
1 E2 2000
Third datatable:
MID Name Year
3 E3 2000
3 E3 2002
Fourth Datatable:
MID Name Year
4 E4 2001
4 E4 2000
Now see The datatable 1st and 2nd have to come in one folfer...,
Third have to come in one folder
Fourth have to come in one folder
How to do that
Thanks & Regards,
NeW OnE,
please don't forget to vote on the post
|
|
|
|
|
New one wrote: Logic problem in Datatable
Why are you asking one question again and again?
Can not you wait for an answer?
Can not you use your own logic?
This is not logic problem in datatable,this is your logic problem.
try to do your self.It is just logic that you have to do yourself.
Just think possibilities.
please don't forget to vote on the post that helped you.
|
|
|
|
|
What nonsense?
If someone provides you code then you mark that answer as good answer.
please don't forget to vote on the post that helped you.
|
|
|
|
|
Hi,
I want to set serial number in my data grid. I have set paging also. I have created one template column for Sl.No. This following is my client side code. Pls help me. Serial number should start from 1 up to according to the data. On the next page, it should continue. It should not start again from 1.
<asp:datagrid id="DataGrid1" style="Z-INDEX: 101; LEFT: 8px; POSITION: absolute; TOP: 24px" runat="server"
AllowPaging="True" AutoGenerateColumns="False" CellPadding="3" BackColor="White" BorderWidth="1px"
BorderStyle="None" BorderColor="#CCCCCC" CssClass="GrdRows">
<SelectedItemStyle Font-Bold="True" ForeColor="White" BackColor="#669999"></SelectedItemStyle>
<ItemStyle ForeColor="#000066"></ItemStyle>
<HeaderStyle Font-Bold="True" ForeColor="White" BackColor="#006699"></HeaderStyle>
<FooterStyle ForeColor="#000066" BackColor="White"></FooterStyle>
<Columns>
<asp:BoundColumn DataField="srno" HeaderText="No"></asp:BoundColumn>
<asp:TemplateColumn HeaderText="Sr No.">
<ItemTemplate>
<![CDATA[<%#Container.ItemIndex + 1 + DataGrid1.CurrentPageIndex*DataGrid1.PageSize %>]]>
</ItemTemplate>
</asp:TemplateColumn>
Balasubramanian K.
|
|
|
|
|
Do not repost.
Is CDATA attribute in your code? if it is then remove it.
<![CDATA[<%#Container.ItemIndex + 1 + DataGrid1.CurrentPageIndex*DataGrid1.PageSize %>]]>
It should be
<%#Container.ItemIndex + 1 + DataGrid1.CurrentPageIndex*DataGrid1.PageSize %>
please don't forget to vote on the post that helped you.
|
|
|
|