Thanks for the idea i'll try that
swissmiss86
Posts
-
Base64 converter -
Base64 converterDoes anyone know if there's a tool which i can download and use for decoding base64 encoded files? It should work just like in http://www.base64converter.com I have a windows .net application for downloading encoded data from a web service and i need to manually decode that data using above website rather i'm looking forward to automate this entire process. I appreciate your help
-
insert special characters into sql databasePlease assist me in inserting special characters into a sql table whose column datatype is set to varchar. I actually developed a VB script which extracts data from xml file and inserts into sql database. In the xml file i have data where description of a field has text like phone ® (i.e text representation of registered trademark symbol). This is causing error when parsing the xml file and it says ERROR: Reference to undefined entity 'reg'. Any help would be appreciated.
-
Calendar control helpis it possible to pick more than one date(non continuous) using the calendar control? If so please help me.
-
recover a deleted project file:( it's a shift+del so no way to have it in trash bin but as the sytem is not restarted i'm sure there would be a way to recover deleted files
-
recover a deleted project filei accidentally deleted a C# project file and i don't use source safe so is it possible to recover the deleted project as the system was not rebooted.
-
recover a deleted project filei accidentally deleted a C# project file and i don't use source safe so is it possible to recover the deleted project as the system was not rebooted.
-
screen scraping websites using cookiesis it possible to screen scrape websites using cookies? if so please help me doing that? how to know what the cookie values are and how to append them in the url?
-
page load progresswell, my idea is to display a splash screen with some image in it to entertain the user and indicate the page is loading slowly. this should be done using C#.Net, please suggest me any links, thanks
-
page load progresshow to display a message like 'please wait while page loads' when an aspx page takes long time to load....so as to make sure that the users don't panic and run away before it finishes. thanks in advance.
-
problem exporting to excelis there a way to directly export SQL data to excel using a aspx page without displaying this data on a datagrid. so this is not like exporting from datagrid to excel but it is like...when user clicks a button then an Sproc is executed and data should be directly saved into excel. any help would be appreciated,thanks
-
Button text in two lines [modified]How to get the text displayed in two lines for an asp:Button control using C#.Net. for example : so "Find an Existing" should be in first line and "product ID" should display in second line -- modified at 16:02 Thursday 28th September, 2006
-
Passing values using Image button instead of 'Submit' buttonwhen you go to this page http://www1.sprintpcs.com/explore/coverage/CoverageOverview.jsp?ATR\_ExtraOne=Personal\_Wireless\_Plans\_Coverage and enter a zipcode and when u click the 'View coverage' image button, then you get the next page which shows whether you have coverage to the zipcode you entered. But i'm having problem when i do it through Csharp.Net. The problem is the zipcode value is not getting submitted through the image button. this is the final page where it displays whether it has coverage or not. http://www1.sprintpcs.com/explore/coverage/CoverageOverview.jsp?bmForm=SprintZipCodeToCSAComponentPlansFocus&bmFormID=1152889587027&bmUID=1152889587027&bmIsForm=true&bmPrevTemplate=explore%2Fcoverage%2FCoverageOverview.jsp&bmText=csaZip&csaZip=20171&bmImage=ShowPlans.x&bmImage=ShowPlans.y&bmImage=ReturnCSA.x&bmImage=ReturnCSA.y&bmHidden=FOLDER<>folder\_id&FOLDER<>folder\_id=1436777&bmHidden=CURRENT\_USER<>ATR\_SCID&CURRENT\_USER<>ATR\_SCID=ECOMM&bmHidden=CURRENT\_USER<>ATR\_PCode&CURRENT\_USER<>ATR\_PCode=None&bmHidden=CURRENT\_USER<>ATR\_cartState&CURRENT\_USER<>ATR\_cartState=group&bmFields=bmForm%2CbmFormID%2CbmUID%2CbmIsForm%2CbmPrevTemplate%2CbmText%2CbmImage%2CbmHidden&bmHash=84312c83205bfccaa4a01a0f0edbd2d4495bbd27&ReturnCSA.x=36&ReturnCSA.y=7 any help would be appreciated
-
Passing values using Image button instead of 'Submit' buttonIn the Page_Load i'm calling the PostFormData() by passing URL as a parameter. Code here is lblTest.Text = PostFormData("","http://www1.sprintpcs.com/explore/coverage/CoverageOverview.jsp?bmForm=SprintZipCodeToCSAComponentPlansFocus&bmFormID=1152824111731&bmUID=1152824111731&bmIsForm=true&bmPrevTemplate=explore%2Fcoverage%2FCoverageOverview.jsp&bmText=csaZip&csaZip=20171&bmImage=ShowPlans.x&bmImage=ShowPlans.y&bmImage=ReturnCSA.x&bmImage=ReturnCSA.y&bmHidden=FOLDER<>folder\_id&FOLDER<>folder\_id=1436777&bmHidden=CURRENT\_USER<>ATR\_SCID&CURRENT\_USER<>ATR\_SCID=ECOMM&bmHidden=CURRENT\_USER<>ATR\_PCode&CURRENT\_USER<>ATR\_PCode=None&bmHidden=CURRENT\_USER<>ATR\_cartState&CURRENT\_USER<>ATR\_cartState=group&bmFields=bmForm%2CbmFormID%2CbmUID%2CbmIsForm%2CbmPrevTemplate%2CbmText%2CbmImage%2CbmHidden&bmHash=0b24f83f9aeb3e1e8e99ca2ae0d7a53e4b5637ed&ReturnCSA.x=33&ReturnCSA.y=9"); and code for PostFormData is here private string PostFormData(string strFormData,string strPostURL) { try { bytData = Encoding.ASCII.GetBytes(strFormData); myWebReq = (HttpWebRequest)WebRequest.Create (strPostURL); myWebReq.Method = "POST"; myWebReq.KeepAlive = false; myWebReq.ContentType = "application/x-www-form- urlencoded"; myWebReq.ContentLength = bytData.Length; reqStream = myWebReq.GetRequestStream(); reqStream.Write(bytData, 0, bytData.Length); reqStream.Close(); HttpWebResponse myWebRspns = (HttpWebResponse) myWebReq.GetResponse(); srResult = new StreamReader(myWebRspns.GetResponseStream (), System.Text.Encoding.ASCII); strResponse = srResult.ReadToEnd(); srResult.Close(); return strResponse; } I don't know where i'm going wrong. Pls help
-
Dropdown Selected Text -
Passing values using Image button instead of 'Submit' buttonwhen you go to this page http://www1.sprintpcs.com/explore/coverage/CoverageOverview.jsp?ATR\_ExtraOne=Personal\_Wireless\_Plans\_Coverage and enter a zipcode and when u click the 'View coverage' image button, then you get the next page which shows whether you have coverage to the zipcode you entered. But i'm having problem when i do it through Csharp.Net. The problem is the zipcode value is not getting submitted through the image button. this is the final page where it displays whether it has coverage or not. http://www1.sprintpcs.com/explore/coverage/CoverageOverview.jsp?bmForm=SprintZipCodeToCSAComponentPlansFocus&bmFormID=1152889587027&bmUID=1152889587027&bmIsForm=true&bmPrevTemplate=explore%2Fcoverage%2FCoverageOverview.jsp&bmText=csaZip&csaZip=20171&bmImage=ShowPlans.x&bmImage=ShowPlans.y&bmImage=ReturnCSA.x&bmImage=ReturnCSA.y&bmHidden=FOLDER<>folder\_id&FOLDER<>folder\_id=1436777&bmHidden=CURRENT\_USER<>ATR\_SCID&CURRENT\_USER<>ATR\_SCID=ECOMM&bmHidden=CURRENT\_USER<>ATR\_PCode&CURRENT\_USER<>ATR\_PCode=None&bmHidden=CURRENT\_USER<>ATR\_cartState&CURRENT\_USER<>ATR\_cartState=group&bmFields=bmForm%2CbmFormID%2CbmUID%2CbmIsForm%2CbmPrevTemplate%2CbmText%2CbmImage%2CbmHidden&bmHash=84312c83205bfccaa4a01a0f0edbd2d4495bbd27&ReturnCSA.x=36&ReturnCSA.y=7 any help would be appreciated
-
Screen scrapeI'm new to screen scrape. can anybody help me on how to screen scrape a web page