|
Should we declare any directive or name space to use AD rotator control?
|
|
|
|
|
AdRotator class is present in System.Web.UI.WebControls namespace, by default you get this in you toolbar. To use this you don’t need to declare any directive.
You can find many online examples of AdRotator implementation in Google.
WWW, WCF, WWF, WPF, WFC .... WTF
|
|
|
|
|
you just simply drag n drop ad rotator control from toolbar and use it in source file no need to declare any directive
|
|
|
|
|
can we use form view control to display a image? for me neither image or AD rotator control is working
|
|
|
|
|
Form view control is basically used for defining templates for insert/edit/display of database fields, It can’t be used to display image.
WWW, WCF, WWF, WPF, WFC .... WTF
|
|
|
|
|
sorry if this is the wrong forum to post this in...please direct me to the correct one if I'm in error
fairly new to c# asp.net web development...want to know if anyone has a couple of url links that i can go to, to download some free web site templates for c#...i don't really have a css design eye...if they are also seo friendly, that's a bonus too.
thanks
|
|
|
|
|
You are not really looking for a template, which would give you a set of predefined pages, operations and structure. Themes or skins are what can be used to give a look and feel to a site, usually though use of CSS.
I know the language. I've read a book. - _Madmatt
|
|
|
|
|
|
|
Welcome my friend. Along with the Theme, you may find some more useful stuff realted with ASP.NET !
Cheers !
Abhijit
Codeproject MVP
|
|
|
|
|
|
Hi everyone.
I got a question regarding Ajax Control. after installing the Ajax Control, I can't see any ajaxtext box or ajax mask edit. I saw few controls like ajaxcombo box and ajax calender and ... . I jusr wondering to know when I am using ajax do I need to use Ajaxtext box or the simple text box is ok?
Could u please explain about Ajax control toolkit.when should I use them? I am new in ASP.net and really appreciate if some one help me.
many thx in advance
|
|
|
|
|
Have your installed properly ajaxtoolkit?
Are you using VS2005 or VS 2008?
For details Have a look
|
|
|
|
|
|
Hi,
I am using Visual Studio 2005 and Report viewer version 9.0.0 when i try to print the report using the print icon it shows a popup message
"Unable to load print control" and i am not able to print , i tried installing the reportviewer updates but nothing worked, appreciate a response.
Thanks
ashish
|
|
|
|
|
It seems that the client Print Control Active X object is not getting installed at client system due to security setting.
In IE go to Tools ->Internet Options->Security->Custom Level , configure the setting to allow downloading of Active X controls.
Regards,
Prakash Kalakoti
|
|
|
|
|
Hi All -
I have a problem. I want to arrange n number of items in the minimum group. There is maximum upper range for the group. I will explain in detail
Assume database contains below values
Emp1 10
Emp2 2
Emp3 4
Emp4 3
Emp5 11
Emp6 1
Emp7 4
Emp8 9
Emp9 5
Emp10 7
Emp11 14
Emp12 1
Emp13 4
Now I want to create minimum number of groups, where sum of the elements should not exceed say 15 like below
Group 1
Emp1 10
Emp2 2
Emp4 3
Group 2
Emp3 4
Emp5 11
Group 3
Emp6 1
Emp8 9
Emp9 5
Group 4
Emp7 4
Emp10 7
Emp13 4
Group 5
Emp11 14
Emp12 1
Application is ASP .net with C#. Is there any predefined algorithm for achieving this?
Thanks in advance
Roshan
|
|
|
|
|
Roshan P Mohammed wrote: Is there any predefined algorithm for achieving this?
No, you're on your own
I know the language. I've read a book. - _Madmatt
|
|
|
|
|
please guide me in the right direction
|
|
|
|
|
Here[^]
I know the language. I've read a book. - _Madmatt
|
|
|
|
|
You have to implement your own logic to accomplish this.There is no readymade algorithm for that.
|
|
|
|
|
I created suppose 10 buttons dynamically......
how to get ID of a clicked button
protected void Page_Load(object sender, EventArgs e)
{
for (int i = 0; i < 10; i++)
{
Button b1 = new Button();
b1.ID = "b" + i.ToString();
b1.Click += b_Click;
form1.Controls.Add(b1);
}
}
in event hander of click how to retrieve the ID of clicked button.....
protected void b_Click(object sender, EventArgs e)
{
//want ID here........
}
|
|
|
|
|
Here in the eventhandler sender denotes the which which has invoked the event.So you can get the ID here as
protected void b_Click(object sender, EventArgs e)
{
Button b = (Button)sender;
string buttonId = b.ID;
}
|
|
|
|
|
|
Dear All,
I am new to ASP.Net with c#. I am working in Menu control. I am trying to place a javascript function in MenuItem click event.
when MenuItem are clicked certain action should be taken based on javascript function.
any ideas to implement it in c#.
Abdul Rahaman Hamidy
Database Developer
Kabul, Afghanistan
|
|
|
|