|
King Shez wrote: i have just implemented it it's working fine, but it's not working in Mozilla Firefox,
Where its working fine ? How did you change the color ? obviously using css . and its working in IE only isn't it.
But , AFAIK, FireFox does not support to change Div scroll color using CSS. If you want to implement it, try to using javascript.
Now you can take help from google.
cheers,
Abhijit
|
|
|
|
|
Hi, I'm working in Asp.Net & code behind vb.net (VS 2005). I've added Crystal Report and added 3 tables
There are 3 tables called Table1, Table2 and Table3, which are used in to the crystal reports. The field names, EmpName of Table1, EmpQualification of Table2 and EmpAddType of Table3 are dragged into my Report. "pEmpCode" is added as a parameter by using Parameter Field in Field Explorer. EmpCode is the common field of those 3 tables. But links have never given. Employee data are in Table1 But, Table2 and Table3 may have or may not his data. I have to pass EmpCode from my code behind. But How I have to link pEmpCode with EmpCode of the tables.
If I map, then only I can get the required record.
Thanks in Adv.
Balasubramanian K.
|
|
|
|
|
hi all;
my question is:
How can a server trace each machine when they request for accessing some resource(some text pages)?I want to make this system by asp.net.
Thanks in advance.
|
|
|
|
|
It sounds to me like you have no idea what ASP.NET is.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
Well,I think you do not understand me.Recently i went to a cyber cafe.They use cable broad band.Means every user is in lan.For surfing internet they have to log in first.This log in page is automatically provide by local server.Log in url is like "http://192.168.183.200:8080/alliance/login.do".Other wise sign in into local server you can not surf internet.
Christian Graus wrote: It sounds to me like you have no idea what ASP.NET is.
As i know "login.do" is a servlet page.Whole system is worked in between lan computers.I think it can be possible to integrate by asp.net also.
|
|
|
|
|
Hi,
I am developing a website with russian language. I declared utf8 encoding in web.config and i have declared globalization tag in web.config. I defined charset attribute in connectionstring as utf8.It works fine in local mysql database.But if i upload the same page in server the data stored in database as question marks.Please give me an idea to solve this problem.
Thanks.
|
|
|
|
|
I would start by finding out what is different from the dev environment to the production environment.
Does your server have the same language set as the dev station?
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
|
|
|
|
|
Hi,
Thanks for your reply.
Our database server and developer mysql database have the same utf8 format.
Thanks
|
|
|
|
|
Ok, database servers have been checked, how about the servers on which IIS lives on?
By the way, how much Googleing have you done? If you have done any, what keywords have you used?
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
|
|
|
|
|
Hi,
The production IIS 6.0.
We searched a lot.i used the keywords "Charset in connectionstring using asp.net","UTF8 format"
Another important thing "when i execute a query in production database server it stored the records in russian language" But it is not working through the dotnet application
we read the below url:
http://liadprog.blogspot.com/2007/10/aspnet-20-with-mysql-412-unicode.html[^]
Thanks for your reply
|
|
|
|
|
Hi, i am reading data from text file. the data is as follows
sachin ganguly dhoni dravid
means, each word has two spaces.
my code is as follows
StreamReader sr = new StreamReader("C:\\test.txt");
while ((text_line = sr.ReadLine()) != null)
{
text_line = text_line.Replace(' ',',');
sw.WriteLine(text_line);
}
I am getting error at text_line = text_line.Replace(' ',',');
saying that "Too many characters in character literal"
How can i replace double or triple or more spaces between words with comma?
G. Satish
|
|
|
|
|
ok friends, i got the answer.
I modified the code as follows. so its working now..
If any other methods, rather than this, then plz post
string str1 = " ";
string str2 = ","
StreamReader sr = new StreamReader("C:\\test.txt");
while ((text_line = sr.ReadLine()) != null)
{
text_line = text_line.Replace(str1,str2);
sw.WriteLine(text_line);
}
G. Satish
|
|
|
|
|
You need to change to use a different overload of the Replace function - two spaces is two characters whereas the method you're using expects a single character. Change it so that you do a string, rather than a character replace:
<br />
string test = "a b c d e f g";<br />
Console.WriteLine(test.Replace(" ", ";"));<br />
Console.ReadLine();<br />
It definitely isn't definatley
|
|
|
|
|
I just created a sample web application project using .net 2.0
1. Add the following iframe tag in the default.aspx
frameborder="0" scrolling="no">
2. Add one new page WebForm1.aspx
put some content and one hyperlink to navigate to (WebForm2.aspx) other pages.
3. And add one more WebForm2.aspx
put some contents inside this page.
4.Set the statup page as default.aspx,
5.Build this project and open in IE, the WebForm1.aspx content will get displayed in this default.aspx page,
6. Then Click on Hyperlink it will navigate to webform2.aspx.
7. Then click on Add to Favorites, then open a new IE, browse this Favorites page. we are able to get the webform2.aspx as viewed before.
8. The same is not working while clicking bookmarks in firefox.
Please let me know anyidea or technical help regarding this. Any help will be highly apprceiated.
Thanks and regards
D.Selvaraj
D.SELVARAAJ
Banglore, INDIA
|
|
|
|
|
I have label on homepage showing number of hits. I have used Session to keep track of it using database. When new session starts, its increment and on home page its getting reset.
The problem is it works fine when I open site in new window, but when opened in multiple tabs of IE7, it shows same users and not incrementing. Here is the code.
//Assigned 1 from global.asax on starting of each new session.
lock (this)
{
HomeDataInterface oHits = new HomeDataInterface();
if (Session["Hits"].ToString() == "1")
{
oHits.QACoEHits();
Session["Hits"] = "0";
}
lblHits.Text = lblHits.Text + oHits.GetQACoEHits();
}
I added lock(this) but that is also not working.
Can anyone help please?
|
|
|
|
|
|
Hi,
I want to know how to add custom Radio Button/Check Boxes functionality at the time of web setup Deployment
Can any body send the code /link of the projects in c#
|
|
|
|
|
Hello everyone,
I have a deployed ASP.Net application, I have source code and PDB files for all assemblies used in this ASP.Net application. And the ASP.Net application runs on IIS.
My question is, how to debug on IIS? E.g. I send some request and could debug line by line in cs file to see the processing details?
thanks in advance,
George
|
|
|
|
|
Remote Debugging
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
|
|
|
|
|
How? Is there a tutorial?
regards,
George
|
|
|
|
|
Google, use the keyword I gave you.
If I have to give you a tutorial on how to use Google, I can only hope that you stop programming, and while your at it, stop using the computer.
The best way to accelerate a Macintosh is at 9.8m/sec² - Marcus Dolengo
|
|
|
|
|
Hi Expert,
All I found is how to debug a remote application (by attaching to its process), but for ASP.Net application, which process should I attach to?
regards,
George
|
|
|
|
|
George_George wrote: which process should I attach to?
aspnet_wp.exe
cheers,
Abhijit
|
|
|
|
|
Cool, thanks Abhijit!
regards,
George
|
|
|
|
|
Tools - > Attach Process.
Open Websites on VS , Attach the Browser Application which is currently runs your application. Then Debug.
cheers,
Abhijit
|
|
|
|