Forum: ASP.NET Mar 2nd, 2009 |
| Replies: 0 Views: 1,222 Hi developers,
I have a question
can we dynamically load a UserControl in Ajax Popup Extender ?
kind Regards,
Saurabh |
Forum: ASP.NET Dec 20th, 2008 |
| Replies: 0 Views: 2,957 Hi.....
I am binding a Repeater control with List<int> at OnLoad event
protected override void OnLoad(EventArgs e)
{
if(!Page.IsPostBack)
{
List<int> datasource... |
Forum: ASP.NET Jan 11th, 2008 |
| Replies: 4 Views: 980 When ever u create an Setup project or MSI installer.......GO to the properties of that Setup project.......n there is a button named "Prerequesities" click on that button.....one window will... |
Forum: ASP.NET Jan 11th, 2008 |
| Replies: 9 Views: 1,346 if ur client have a Server.....then u install Framework only on the server.......not on the all client machines........ |
Forum: ASP.NET Jan 11th, 2008 |
| Replies: 9 Views: 1,346 but u can not run ur application on web until u don't have the .Net Framework on the client machine.....u must have to install the .Net Framework..... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,799 Dear.......u can not cast an integer value into a bool type variable.......u pass the value to ur Bit column according to 1 or 0...
do one thing........create a table in sql server........and... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,799 "anndept.announceToFaculty " this function is of bool type change this function dear.........
change this function dear........ |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,799 do this thing.....take one int type variable....
Int32 i;
if (facultychecked.Checked == true)
{
i =1;
}
else
{ |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,799 u can not assign 1 or 0 to a bool type variable.......
use Int type variable......and then assign 1 or 0 |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,799 yes this is because.......it consist only true or false.....if 1 then true and if 0 then false
ur code must b like this
if (facultychecked.Checked == true)
{
anndept.announceToFaculty =1;
}... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,799 Datatype bit takes the value 0 or 1.....if true then 1
if false then 0 |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 4 Views: 980 Yes it is possible......... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 9 Views: 1,346 We can not run our .Net Web Application on the Machine which does not containt .Net Framework........
Only solution is that u must have to Create the MSI installer or Setup of ur Web... |
Forum: ASP.NET Jan 7th, 2008 |
| Replies: 5 Views: 1,982 int32 i=e.RowIndex(); // worked in RowDataBound event |
Forum: ASP.NET Jan 4th, 2008 |
| Replies: 5 Views: 1,982 first u have to create an object of Checkbox
then u have to find that checkbox in ur Datagrid using loop like
checkbox chk;
for(int i=0;i<=datagrid.rows.count-1;i++)
{... |
Forum: ASP.NET Jan 4th, 2008 |
| Replies: 6 Views: 3,609 if u want to use the.....JavaScript in ur App.....then its very simple to.....Print ....
u can use Window.Print()
it definite works....
Enjoy.... |