|
hello apurva
thanx..for replying
i got u but problem with me is that i'm working for a US client then how could i do changes in his server or what i hav to do for it.
and what should i ask to client for this matter.
tell me.
thanx
|
|
|
|
|
i dont think that you can do any change on there server but you need to know about the folder and i not too sure about how you can check it on there server. Alternatively you can discuss this your senioy on how to handle this.
Best Regards,
Apurva Kaushal
|
|
|
|
|
There is alot of method to go about it. And it is even better if you are using the current .NET 2.0 with the postbackurl property.
thanks in advance. Much appreciated.
|
|
|
|
|
But i'm using .Net 1.1 is there any other solution or sample code you can show to me? Thanks..
Best Regards,
Pei Sun
|
|
|
|
|
To pass data in-between forms, u have several options. To get a proper overview, search for state management in MSDN.
For immediate help:
string name = "Pei Sun";
Arraylist nickNames = new Arraylist(3);
nickNames.Add("PeSun");
DataSet ds = new DataSet();
//1. You can use HttpCookie which represents a cookie stored on the client's machine.
HttpCookie myData = new HttpCookie("CookieName");
myData.Expires.AddMinutes(5);
myData.Values.Add("name", name);
myData.Values.Add("nickNames", nickNames);
//add ds in the same way.
//Then add the cookie to the HttpSession.Cookies collection
HttpSession.Cookies.Add(myData);
//And thats it. You can redirect to your new page.
Live in fragments no longer. Only connect.
|
|
|
|
|
Hi ,
How to get time in 24 hours format in ASP.NET 1.1
Regards,
Uma
|
|
|
|
|
Hi Uma
try this
DateTime dtNow = DateTime.Now;<br />
string str24Hrs = dtNow.ToString("T",System.Globalization.CultureInfo.InvariantCulture);
regards
GV Ramana
|
|
|
|
|
DateTime.Now.ToString("MM/dd/yyyy HH:mm:ss");
Make sure the HH is in upper case, that makes it military time (24 hrs format)
Nila Fridley
|
|
|
|
|
Hello Friends,
Can anyone tell me how to print a datagrid in a window application using C#. Iam having a very big grid. first it should be shown to a printpreview page and from there it has to be printed. Help me to get the entire grid to a printpreview page.
Vipin
|
|
|
|
|
Try the c# forum, this is for web based apps.
|
|
|
|
|
|
Hello All,
I want to resize the iframe depending on the the size of the document loaded
into to the iframe so that i can use IE to scroll
kavitha
|
|
|
|
|
hi
you can set scroll to the iframe
Thomas
|
|
|
|
|
Thanks for u reply.
I dont want to use the Iframe's scrollbar instead i want to use the IE's scrollbar
|
|
|
|
|
Hello ,
I am alex, i need ur help ,the code for reading csv file and dump into sql server database using asp.net c#.help me
i am waiting alex.
thanks in advance.
|
|
|
|
|
|
Hi, Before master pages we were able to use indexing server to add search capabilities to a website and it worked a treat. To improve the ranking of a particular page we could just add meta tags to the page with what we would think the user would enter as search text. Now with masterpages, we can't add meta tags to the child pages as the head tags are in the masterpage file. Does anyone know how to improve the ranking of a page when using master pages? Alternatively, does anyone know of any other product that overcomes my problem?
|
|
|
|
|
lucasfong wrote: Now with masterpages, we can't add meta tags to the child pages as the head tags are in the masterpage file.
I think you can add the meta tag from the content page with one of the following options:
+ Use the Page.Header property in code.
+ Place a meta tag which is marked with the runat="server" , you then can expose it via a public property in the master page so that you can access it from the content page.
+ Place a contentplaceholder in the head template and you can specify the meta tag from the content page.
|
|
|
|
|
i'm curruntly developing web site and one of its services is to broadcast videos via cameras,can anyone help me ???!
|
|
|
|
|
IMHO, you may consider using the Windows Media for streaming the video as it can save much of your effort. You might want to check out the home site for more information.
|
|
|
|
|
Sorry for this question but i need some quick answers.
Ive just learny 1.1 to a reasonable standard. However im planning on creating a new project for a client in .Net and need to purchase hosting for it.
Therefore i need to know the following:
1) Is 2.0 significantly different to 1.1 in terms of coding and application creation via .Net studio?
2) Will a 2.0 web server still run a 1.1 project?
Thanks
Phill
|
|
|
|
|
2) Yes
1) There are plenty of blogs and forums out there that discussion the differences. I'd give one but can't find the right search at the moment
|
|
|
|
|
hai guys,
some of the diff b/w .net1.1 and 2.0 are
good no of controls with extended functionality
navigational layout, site map, integration of main page and content page, grid view, and its functionality,...so many things i found developer can reduce his time by using 2.o
Regards, sriniw8z
|
|
|
|
|
|
munklefish wrote: 2) Will a 2.0 web server still run a 1.1 project?
Yes, as long as the hosting company hasn't uninstalled 1.1, which i have heard of. 2.0 and 1.1 can run side by side quite happily.
|
|
|
|