|
Thank you
this did the Trick
<asp:TemplateField HeaderText ="Link">
<ItemTemplate>
<asp:HyperLink ID="linkurl" runat = "server" NavigateUrl ='<%# Eval("Link")%>' Target ="_blank" Text='<%# Eval("Link")%>'></asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>
Thanks
Vuyiswa Maseko,
Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers."
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.com
vuyiswa@its.co.za
http://www.itsabacus.co.za/itsabacus/
|
|
|
|
|
Hi ...
I need to create a hit counter page of our website by which i can see statistic of our website user as daily basis, monthly and weekly basis..
Thnaks,
Abbas
|
|
|
|
|
Create one table with columns: ID,HintCounter,Date and in every page load of masterpage update value by one in table.
I Love T-SQL
"Don't torture yourself,let the life to do it for you."
If my post helps you kindly save my time by voting my post.
www.aktualiteti.com
|
|
|
|
|
Do you want to track hits or visits because they are 2 very different things?
|
|
|
|
|
What about using Google Analytics[^] ?
Abhijit Jana | Codeproject MVP
Web Site : abhijitjana.net
Don't forget to click "Good Answer" on the post(s) that helped you.
|
|
|
|
|
Abhijit Jana wrote: What about using Google Analytics[^] ?
Well, I love this tool. Lately, I have also started using this. But there are still bits and pieces which are missing in this too.
Manas Bhardwaj
Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
|
|
|
|
|
Hello,
thanks for providing solution to multiselect dropdown .
I have downloaded the applications and converted it to vs 2005.After conversion the application is running properly but when i copied usercontrol and page
from this application and added to another application i am getting the compilation error mentioned below:
CS0115: 'ASP.webform1_aspx.GetTypeHashCode()': no suitable method found to override
Line 511: Line 512: [System.Diagnostics.DebuggerNonUserCodeAttribute()] Line 513: public override int GetTypeHashCode() { Line 514: return 1203564985; Line 515: }
I am maintaining the same heirarchy and namespace as per original application but unable to resolved it.
Please let me know the solution.
Thanks in Advance!!
|
|
|
|
|
|
Check whether Inherits of your page Directive has proper class that inherits Page or not.
This issue occurs when Inherits doesnt find the Class. The Inherits should be pointing to a class which inherits
System.Web.UI.Page .
|
|
|
|
|
TextBox2.Text = selectedDate.DayOfWeek.ToString();
TextBox3.Text = selectedDate.ToShortDateString();
DateTime sel = selectedDate.AddDays(7);
TextBox2.Text = sel.ToShortDateString();
string connection2 = ConfigurationManager.AppSettings["conn"];
OleDbConnection con2 = new OleDbConnection(connection2);
OleDbDataAdapter da_detail = new OleDbDataAdapter();
DataSet ds_detail = new DataSet();
con2.Open();
//da_detail.Fill(ds_detail, "details");
//DataTable detail_dt = ds_detail.Tables["details"];
string query = "select * from appointment where DATE >= " + selectedDate.ToShortDateString() + " AND DATE<= " + sel.ToShortDateString() + "";
OleDbCommand pay_cmd2 = new OleDbCommand(query, con2);
//DataRow row = null;
//OleDbCommand pay_cmd2 = new OleDbCommand(query, con2);
da_detail.SelectCommand = pay_cmd2;
da_detail.Fill(ds_detail, "details");
DataTable detail_dt = ds_detail.Tables["details"];
GridView1.DataSource = detail_dt;
GridView1.DataBind();
am tryin this but no values are gettin selected.some problem wit the query.the values are in date/time format.plz help
|
|
|
|
|
This is a Repost. Why do you do this ?
Vuyiswa Maseko,
Few companies that installed computers to reduce the employment of clerks have realized their expectations.... They now need more and more expensive clerks even though they call them "Developers" or "Programmers."
C#/VB.NET/ASP.NET/SQL7/2000/2005/2008
http://www.vuyiswamaseko.com
vuyiswa@its.co.za
http://www.itsabacus.co.za/itsabacus/
|
|
|
|
|
Wrap your date strings in hashes:
string query = "select * from appointment where DATE >= #" + selectedDate.ToShortDateString() + "# AND DATE<= #" + sel.ToShortDateString() + "#";
I would really advise you to write parameterized queries, though.
Read up on it.
var question = (_2b || !(_2b));
|
|
|
|
|
string query = "select * from appointment where DATE >'" + selectedDate.ToShortDateString() + "' AND DATE<'" + sel.ToShortDateString() + "'";
|
|
|
|
|
Hi to all,
I am stucked in a problem. I have a gridview in which there are two button columns.
On button click I want image to open in fax viewer. I tried like this.
But the problem is that the foreach is going through all the rows. I want that if a user clicks on a certain button then it should open the corresponding image.
Please assist me...
<br />
<asp:GridView ID="GridView1" runat="server" BackColor="White" DataKeyNames="UniqueID" <br />
BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px" CellPadding="3" <br />
AutoGenerateColumns="False"><br />
<RowStyle ForeColor="#000000" /><br />
<FooterStyle BackColor="White" ForeColor="#000066" /><br />
<PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" /><br />
<SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" /><br />
<HeaderStyle BackColor="#006699" Font-Bold="True" ForeColor="White" /><br />
<Columns><br />
<br />
<asp:TemplateField HeaderStyle-Width="50px" HeaderText="SrNo" InsertVisible="False" SortExpression="SrNo"><br />
<ItemTemplate><br />
<asp:Label ID="SrNoLabel" runat="server" Text='<%# Bind("SrNo") %>'></asp:Label><br />
</ItemTemplate><br />
<HeaderStyle Width="50px"></HeaderStyle><br />
</asp:TemplateField><br />
<br />
<asp:TemplateField HeaderStyle-Width="50px" HeaderText="UniqueID" InsertVisible="False" SortExpression="UniqueID"><br />
<ItemTemplate><br />
<asp:Label ID="UniqueIDLabel" runat="server" Text='<%# Bind("UniqueID") %>'></asp:Label><br />
</ItemTemplate><br />
<HeaderStyle Width="50px"></HeaderStyle><br />
</asp:TemplateField><br />
<br />
<asp:TemplateField HeaderStyle-Width="50px" HeaderText="BridgeNo" InsertVisible="False" SortExpression="BridgeNo"><br />
<ItemTemplate><br />
<asp:Label ID="BridgeNoLabel" runat="server" Text='<%# Bind("BridgeNo") %>'></asp:Label><br />
</ItemTemplate><br />
<HeaderStyle Width="50px"></HeaderStyle><br />
</asp:TemplateField><br />
<br />
<asp:TemplateField HeaderStyle-Width="50px" ItemStyle-HorizontalAlign="Left" HeaderText="PlanNo" InsertVisible="False" SortExpression="PlanNo"><br />
<ItemTemplate><br />
<asp:Label ID="PlanNoLabel" runat="server" Text='<%# Bind("PlanNo") %>'></asp:Label><br />
</ItemTemplate><br />
<HeaderStyle Width="50px"></HeaderStyle><br />
</asp:TemplateField><br />
<br />
<asp:TemplateField HeaderStyle-Width="180px" ItemStyle-HorizontalAlign="Left" HeaderText="Description" InsertVisible="False" SortExpression="Description"><br />
<ItemTemplate><br />
<asp:TextBox ID="DescriptionTextBox" Enabled="false" TextMode="MultiLine" runat="server" Text='<%# Bind("Description") %>'></asp:TextBox><br />
</ItemTemplate><br />
<HeaderStyle Width="180px"></HeaderStyle><br />
</asp:TemplateField><br />
<br />
<asp:TemplateField HeaderStyle-Width="50px" HeaderText="OldUniqueID" InsertVisible="False" SortExpression="OldUniqueID"><br />
<ItemTemplate><br />
<asp:Label ID="OldUniqueIDLabel" runat="server" Text='<%# Bind("OldUniqueID") %>'></asp:Label><br />
</ItemTemplate><br />
<HeaderStyle Width="50px"></HeaderStyle><br />
</asp:TemplateField><br />
<br />
<asp:TemplateField HeaderStyle-Width="80px" HeaderText="Image" InsertVisible="False" SortExpression="Image"><br />
<ItemTemplate><br />
<asp:Button ID="ButtonImg" runat="server" Width="80px" ToolTip='<%# Bind("Image") %>' Text="New Image" OnClick="On_Click" ></asp:Button><br />
</ItemTemplate><br />
<HeaderStyle Width="80px"></HeaderStyle><br />
</asp:TemplateField><br />
<br />
<asp:TemplateField HeaderStyle-Width="80px" HeaderText="OldImage" InsertVisible="False" SortExpression="OldImage"><br />
<ItemTemplate><br />
<asp:Button ID="ButtonOldImage" runat="server" Width="80px" ToolTip='<%# Bind("OldImage") %>' Text="Raw Image" OnClick="By_Click" ></asp:Button><br />
</ItemTemplate><br />
<HeaderStyle Width="80px"></HeaderStyle><br />
</asp:TemplateField><br />
<br />
</Columns><br />
</asp:GridView><br />
protected void On_Click(object sender, EventArgs e)
{
foreach (GridViewRow rowitem in GridView1.Rows)
{
Button ButtonImg = (Button)rowitem.Cells[6].FindControl("ButtonImg");
btntext = ButtonImg.ToolTip.ToString();
final_text = Server.MapPath(btntext);
}
System.Diagnostics.Process.Start(final_text);
}
cheers,
sneha
|
|
|
|
|
System.Diagnostics.Process.Start(final_text);
will act as Start -->Run--> prompt
I am Not Sure This Will Work Or Not But Try It
Process.Start("UrPictureViewerExePathToInvoke" + imagePath)
in my system
UrPictureViewerExePathToInvoke= rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen
Convert the code in C# and Do it
modified on Friday, September 4, 2009 8:30 AM
|
|
|
|
|
while i was developing an application in asp.net i got the warning message as
"Validation (XHTML 1.0 Transitional): Element 'font' is considered outdated. A newer construct is recommended"
what is the alternative for this?
|
|
|
|
|
|
Use CSS
only two letters away from being an asset
|
|
|
|
|
Dear Sir,
Hi,
I want create application like outlook as in windows.
Aplicataion will read email through
smtp.
Any body have some idea how to read emails
from gmail, or yahoo.
In short appliction like outlook.
Thank You
|
|
|
|
|
|
manish.m.meshram wrote: I want create application like outlook as in windows.
Good start, a clear definition of your requirements
manish.m.meshram wrote: Any body have some idea how to read emails
Doomed from this point on. If you don't know how to read emails, and can't be bothered to look at the faqs for gmail and yahoo, how are you going to do it?
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
hi
how can i get the output of a control (for example GridView) ,in image format.
|
|
|
|
|
|
hi every body
iwant to ask how can i implement communication between 2 web sites first web asks the second about some information and the other also keeps a record of information about clients (web pages) that connected with it.
its just like central server and clients connecting to it h dont know realy how to do this in asp.net
please help me with the code or give me an example.
thanks
|
|
|
|
|
There is no direct way to communicate between two websites. Here are few possible methods.
- Provide a web service for each website. So one website can use other website's web service to get data
- Use a centralized database which each website uses. You can just query on this DB to get latest updates.
|
|
|
|