|
IF someone connects to your site, you want the site to work. If the DB is down, I guess you'd want to redirect to a page that says 'we couldn't afford a decent server', or something.
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
|
|
|
|
|
Hi All,
Can any one tell me how to block an UI using jQuery in asp.net. It would be helpfull if any reference links is provided. 
|
|
|
|
|
There's all sorts of ways, from having a method called in onclientclick and setting it's return to false while you want to block, to putting a transparent div over the whole screen. Why do you need to use jquery ?
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
|
|
|
|
|
|
I have a gridview in my page and want to freeze the gridview header. Even though I googled it and found out a solution that applying the following css property, the header still disappears when scrolling down and one of the css property cannot be applied because of an error.
CSS Property:
.GridViewFixedHeader { overflow: auto }
.GridViewFixedHeader table th { position: relative }
.GridViewFixedHeader table tbody { overflow-x:hidden }
However, I am not able to use the last property, overflow-x:hidden , because it is giving the error as "overflow-x is not a know CSS property or name". Any help please?
Thanks in advance.
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
|
|
|
|
|
|
Thanks for sending this. This is quite informative. However it seems that this is for a DataGrid. Probably this can be used for GridView also. But I don't want to use any third party controls.
Can I do something on CSS property itself for the fixed GridHeader?
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
|
|
|
|
|
|
Thanks Abhijit. This looks great. Since I am using an update panel, this will be quite useful. However, I'm facing an issue on FreezeHeader. When I try to use that code, I'm getting the error saying that "expression(this.offsetparent.scrollTop)' is not a valid value for the 'top' property".
As a solution to this can do like this[^] But I think if I do this, the headers will not be freezed.
I'm not able to put the code in a content page as tab is not available. Can you please advice?
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
|
|
|
|
|
Hello,
I have a web application. I want to run a program that can run in background parrallely with the actual website.
That back ground process may have messages to display , that can be display on a automatic pop up.
Can any one help ?
Bye
|
|
|
|
|
You have no clue what you're doing. You want to show automatic popups on the client, based on a separate process ? How does this process relate to the website at all ? How can it, if the website runs on the server, and your separate app runs on the client ? Why would clients install the program in question ? What does the background process do, apart from showing messages on the client machine ?
You need to explain how this is an ASP.NET question, and what exactly you're trying to do.
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
|
|
|
|
|
hi...
I have a web application (Rostering of employees), some one does that. Website is intranet application. It is uploaded on server and employees used it from their work stations.
Now the requirement is........
1) they should continue to do what they are doing currently.... example view details, assigning, deleting.
2) suppose some body's shift is created for saturday by rosterer to start at 2pm. An automatic pop up should come or some kind of message should come up on saturday before one hour (i.e. 1 pm) for rosterer that this person shift is going to start please call and remind him.......
3) i hv many other similar kind of requirements...........
If 2nd point is fulfilled....all can be done..... I search many things based on asynchronous programming....could find something....and trying to apply. If any other simple solution is there please reply......
I hope this is clear.
Bye
|
|
|
|
|
kberawala wrote: search many things based on asynchronous programming.
Why ?
Your core issue is, your question has NOTHING to do with ASP.NET. Any code you write in your website, runs on your server. Therefore, it cannot tell the client anything. You can't do that with a web app. IF they happen to be logged into your system, you could show a message WHEN THEY LOG IN. You can't do it otherwise. Instead, you need to write a client app, have your users install that, and have that either make a network connection in order to receive messages or, more likely, call a web service running on your server, to check every 5 minutes or so, if it needs to show a message.
In short, you've taken a rentacoder job under false pretences and have no idea what you're doing. If you can even understand what I said above, that's your only solution. If you can't, then tell your client you're ripping them off.
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
|
|
|
|
|
Hi,
Appreciate your answer...........
I hope u know there is nothing called IMPOSSIBLE.
I asked this question just to look simple and smart solution. I already have a solution for this using javascript and ASP.NET. Better dont say that u dont know wht ur problem is..........
I m not trying to be a part of problem, i want a solution, thats it. If can do it show me...or else thank you.
You are no one to judge wht kind of requirement it is and calling it as "rentacoder job under false pretences". My requirement that i described you.........is the simplest of its kind. There are more complicated requirement after this......so i want my building block to be strongest and smartest.
It might be true that u will be having better experience or knowledge than me.....but i know that this can be done using ASP.NET or visual studio development libraries , etc, etc......and i will get it done.
Bye
Topic closed for you.
|
|
|
|
|
i have sql query like-
(select admin.*, cust.FirstName+' '+cust.LastName as CustName
from adminmsgrecieved as admin,custdetails as cust
where admin.AdminId='111' and cust.CustId=admin.FromCustId )
full outer join
(select admin.*, brok.FirstName+' '+brok.LastName as BrokerName
from adminmsgrecieved as admin,brokerdetails as brok
where admin.AdminId='111' and brok.BrokerId=admin.FromBrokerId )
using (AdminId)
but it is not working.I have tried it in sql query analyzer but it gives error in usin and full outer join.
I have to join both tables plz help..
|
|
|
|
|
1 - we have a SQL forum
2 - if you told us the actual error, it would help us to tell you what you did wrong. We don't even know the table schema
9 out of 10 intelligent people would write the most basic SQL they could that worked, then build on that, to work out where the issue was.
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
|
|
|
|
|
Please post this in SQL forum
***** Programme comme si dept soutien technique. est plein de tueurs en série et ils savent adresse de votre domicile. *****
|
|
|
|
|
Hello,
I want to create a guestbook for my website in ASP.net with pre-approved entries. Could you please guide me to any tutorial on the Net which shows me how to do this? I don't know .net at all so I'll need step-by-step instructions.
Thanks for your help!
P.S. I don't want to use the free services hosted on other sites.
Thanks! 
|
|
|
|
|
rayneesh wrote: I don't know .net at all so I'll need step-by-step instructions.
No, you need a smack upside the head. Either use something that comes complete, OR, spend 6 months learning some absolute basics, and then try to write some code that is production worthy.
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
|
|
|
|
|
|
See, the reason I make good money writing this stuff, is that you can't just ask in a forum, and with no experience, write production quality code, or even code that's going to work terribly well. If you don't know what you're doing, you need to pay someone to do it for you.
Christian Graus
Driven to the arms of OSX by Vista.
Please read this[ ^] if you don't like the answer I gave to your question.
|
|
|
|
|
I agree with you Chris. I should read up and first try myself before asking for help. My mistake!
|
|
|
|
|
Hey,
What is the future of entity framework and LINQ? I am looking for a decent framework for database persistence. I tried Codesmith tools and .NET Tiers templates but the learning curve was huge and the support was almost non existent.
Any suggestions what is a good option to use?
Regards,
Brendan
|
|
|
|
|
|
I have an ASP.NET website i have just finished developing. Everything works fine on my local machine. However when i deploy it onto the production server i get the following error.
Could not find a part of the path 'c:\windows\system32\inetsrv
Any ideas what could be causing this problem and how to solve it?
|
|
|
|