Quantcast
Channel: CodeProject Latest postings for ASP.NET
Viewing all 3938 articles
Browse latest View live

Clickonce deployment

$
0
0
I need ur help on this. AM developing a windows application with vb.net and sql server database file(.mdf). After am through with the project, i decided to publish it using clickonce. But whenever i deploy the application, it wont save the record into the database.

Yahoo Wweather: XMLDOCUMENT, XPATHDOCUMENT or ...

If we click DropDownList items Automatically Select Second DropdownLIst in gridview?

$
0
0
HI All,
Please Explain me , if we select dropdownlist automatically get second dropdownlistDetails andif we select second dropdown list automatically get third dropdownlist details. my dropdownlist control present in gridview(EditItemTemplate field) like this...
<Columns> 
 <asp:TemplateFieldHeaderText="CID"> 
                <ItemTemplate> 
                    <%#Eval("CID")%> 
                </ItemTemplate> 
                <EditItemTemplate> 
                    <asp:DropDownListID="catep"runat="server"> 
                    </asp:DropDownList> 
                </EditItemTemplate> 
            </asp:TemplateField> 
            <asp:TemplateFieldHeaderText="CatId"> 
                <ItemTemplate> 
                    <%# Eval("CatId")%> 
                </ItemTemplate> 
                <EditItemTemplate> 
                    <asp:DropDownListID="cat"runat="server"> 
                    </asp:DropDownList> 
                </EditItemTemplate> 
            </asp:TemplateField> 
            <asp:TemplateFieldHeaderText="CateSubId"> 
                <ItemTemplate> 
                    <%# Eval("CategorySubId")%> 
                </ItemTemplate> 
                <EditItemTemplate> 
                    <asp:DropDownListID="subcat"runat="server"> 
                    </asp:DropDownList> 
                </EditItemTemplate> 
            </asp:TemplateField> 
</Columns>
Thanks&&Regards,
S.Hemanth

ASP MVC update panel

$
0
0
How to use update panels in asp.net mvc? What is the best practice and library for that?

ASP.NET usefull controls

$
0
0
I am going to develop application in ASP.NET MVC. I know there are no rich controls.
 
Could you please recommend me good controls for that (datagrid, calendar, scheduler, numeric textbox, etc.)?
 
Thanks in advance

Could not load file or assembly 'log4net, Version=1.2.10.0

$
0
0
Hello,
 
I'm developing as ASP.NET web application and I use Crystal report for visual studio 2010, I installed it on my machine.
the application work correctly on my machine, but not like this on the server.
after I upload it to the server I fond this error
 
Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
 
I searched for "log4net" more and I found more releases
I upload it ot my bin folder on the server, but the error changed to:
 
Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
 
I didn't found any compatible assembly to my application,
 
I developed this web application into 32 bit OS, and I upload it to a server machine which use Window server 2008 R2 64 bit OS
 
is it has relation with the error?
and How can I correct that error?
at last where I can fount the compatible assembly log4net version 1.2.10.0?
 
thanks?

Error: Could not load file or assembly 'log4net, Version=1.2.10.0

$
0
0
Hello,
 
I'm developing as ASP.NET web application and I use Crystal report for visual studio 2010, I installed it on my machine.
the application work correctly on my machine, but not like this on the server.
after I upload it to the server I fond this error
 
Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified.
 
I searched for "log4net" more and I found more releases
I upload it ot my bin folder on the server, but the error changed to:
 
Could not load file or assembly 'log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
 
I didn't found any compatible assembly to my application,
 
I developed this web application into 32 bit OS, and I upload it to a server machine which use Window server 2008 R2 64 bit OS
 
is it has relation with the error?
and How can I correct that error?
at last where I can fount the compatible assembly log4net version 1.2.10.0?
 
thanks?

duplicate insert for no reason!

$
0
0
let me first show the code. here is the insert code:
 
try
{
    sql_connection = new MySqlConnection(ConfigurationManager.ConnectionStrings["SQLdb"].ConnectionString);
    sql_connection.Open();
    sql_command = new MySqlCommand("sp_add_support_ticket", sql_connection);
    sql_command.CommandType = CommandType.StoredProcedure;
 
    sql_command.Parameters.AddWithValue("param_support_incident_title", txtSubject.Text);
    sql_command.Parameters.AddWithValue("param_email_address", txtEmailAddress.Text);
    sql_command.Parameters.AddWithValue("param_support_ticket_description", txtMessage.XHTML);
 
    int result_rows = sql_command.ExecuteNonQuery();
 
    Session["message_title"] = "Thank you";
    Session["message_title_Color"] = Color.Blue.ToArgb();
    Session["message_text"] = "We have recieved your feedback and we will get back to you as soon as possible.";
    Session["message_button_title"] = "Back";
    Session["message_button_url"] = "Home.aspx";
 
    Response.Redirect("Message.aspx", false);
}
catch (Exception exp)
{
    Session["message_title"] = "Error";
    Session["message_title_Color"] = Color.Red.ToArgb();
    Session["message_text"] = "Unable to send your message. Please try again later.";
    Session["message_button_title"] = "Back";
    Session["message_button_url"] = Request.UrlReferrer.ToString();
 
    Response.Redirect("Message.aspx", false);
}
finally
{
    if (sql_connection != null)
    {
        if (sql_connection.State == ConnectionState.Open)
            sql_connection.Close();
    }
}
 
and this is my stored procedure:
 
CREATE DEFINER=`root`@`localhost` PROCEDURE `sp_add_support_ticket`(IN `param_support_incident_title` varchar(255),IN `param_email_address` varchar(255),IN `param_support_ticket_description` text)
BEGININSERTINTO support_incidents (support_incident_title, email_address) VALUES (param_support_incident_title, param_email_address);
	INSERTINTO support_tickets (support_incident_id, support_ticket_description) VALUES (LAST_INSERT_ID(), param_support_ticket_description);
END
 
now.... when I fill the form on help.aspx page i get the data insert properly..
 
BUT...............
 
It will also add a new row
 
in support_incodents table with "Thank you" in support_incident_title field
in support_tickets table with "We have recieved your feedback and we will get back to you as soon as possible." in support_ticket_description field
 
if you notice, the text added in the new row is taken from the Session variable! but I really don't understand why it's adding new row and how it's taking Session's variable?!!
 
please help..............

 
Technology News @ http://www.JassimRahma.com

Exception: System.ServiceModel.ProtocolException: The content type text/html of the response message does not match the content type of the binding (text/xml; charset=utf-8)

$
0
0
Hi All,
 
I have a WCF Service (Ex name: MyWCFService) which has all the database access and business logic mechanism, which is hosted in IIS using BasicHttpBinding. This WCF service is created by me. One of my collegue also created a WCF service called JasonProxyService which consumes MyWCFService, converts the result into Jason and gives it to UI, UI is using Ajax. The JasonProxyservice doesnt have configuration (like in web config it doesnt have elements , etc, which is unusual for me), and this JasonProxyservice has only two files .svc and svc.vb added to an asp.net application which has the UI also (the asp.net application has all the UI and ajax etc). There is no interface for contract, the ServiceContract attribute is defined right on top of the class and the methods in the class are defined with OperationContract attribute on top of them. When I tried to add interace and define it as service contract and put the WCF service configuration in the webconfig file, simply the Ajax isnt working. Then I left that option.
The reason for keeping JasonProxyService and UI in the same project is to avoid cross domain, becuase Ajax doesnt allow cross domain and our organization also not interested in cross domain because of security. The developer who wrote JasonProxyservice has left the project. Now it has come to my plate. This is what the problem is. I am really struggling with it for a while.
For solution, as first step I wrote logger to understand what is the problem, I am getting the below exception, and I am new to the json world. Please help me. Below is my exception, any help would be really helpfull.
 
System.ServiceModel.ProtocolException: The content type text/html of the response message does not match the content type of the binding (text/xml; charset=utf-8). If using a custom encoder, be sure that the IsContentTypeSupported method is implemented properly. The first 1024 bytes of the response were: '<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Strict//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html; charset=iso-8859-1"/><title>500-Internalservererror.</title><styletype="text/css"><!--body{margin:0;font-size:.7em;font-family:Verdana,Arial,Helvetica,sans-serif;background:#EEEEEE;}fieldset{padding:015px10px15px;}h1{font-size:2.4em;margin:0;color:#FFF;}h2{font-size:1.7em;margin:0;color:#CC0000;}h3{font-size:1.2em;margin:10px000;color:#000000;}#header{width:96%;margin:0000;padding:6px2%6px2%;font-family:"trebuchet MS",Verdana,sans-serif;color:#FFF;background-color:#555555;}#content{margin:0002%;position:relative;}.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;}--></style></head><body><divid="header"><h1>ServerError</h1></div><divid="content"><divclass="content-container"><fieldset>'.--->System.Net.WebException:Theremoteserverreturnedanerror:(500)InternalServerError.atSystem.Net.HttpWebRequest.GetResponse()atSystem.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpantimeout)---Endofinnerexceptionstacktrace--- 
Serverstacktrace:atSystem.ServiceModel.Channels.HttpChannelUtilities.ValidateRequestReplyResponse(HttpWebRequestrequest,HttpWebResponseresponse,HttpChannelFactoryfactory,WebExceptionresponseException,ChannelBindingchannelBinding)atSystem.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpantimeout)atSystem.ServiceModel.Channels.RequestChannel.Request(Messagemessage,TimeSpantimeout)atSystem.ServiceModel.Dispatcher.RequestChannelBinder.Request(Messagemessage,TimeSpantimeout)atSystem.ServiceModel.Channels.ServiceChannel.Call(Stringaction,Booleanoneway,ProxyOperationRuntimeoperation,Object[]ins,Object[]outs,TimeSpantimeout)atSystem.ServiceModel.Channels.ServiceChannel.Call(Stringaction,Booleanoneway,ProxyOperationRuntimeoperation,Object[]ins,Object[]outs)atSystem.ServiceModel.Channels.ServiceChannelProxy.InvokeService(IMethodCallMessagemethodCall,ProxyOperationRuntimeoperation)atSystem.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessagemessage) 
Exceptionrethrownat[0]:atSystem.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessagereqMsg,IMessageretMsg)atSystem.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData&msgData,Int32type)atWA.LNI.StayAtWork.Public.Web.StayAtWorkServiceReference.IStayAtWorkService.SetContactInfo(UserInfouserInfo)atWA.LNI.StayAtWork.Public.Web.StayAtWorkServiceReference.StayAtWorkServiceClient.SetContactInfo(UserInfouserInfo)inD:\source\SourceCode\StayatWork-VS2010\WA.LNI.StayAtWork.Public.Web\WA.LNI.StayAtWork.Public.Web\ServiceReferences\StayAtWorkServiceReference\Reference.vb:line2848atWA.LNI.StayAtWork.Public.Web.JSONProxyService.SetContactInfoJSON(UserInfodto)inD:\source\SourceCode\StayatWork-VS2010\WA.LNI.StayAtWork.Public.Web\WA.LNI.StayAtWork.Public.Web\JSONProxyService.svc.vb:line359 
Thanks & Regards,
 
Abdul Aleem Mohammad
St Louis MO - USA

httpModule Type Language Module will not load in Visual Studio debugger

$
0
0
Dear All,
 
After following instruction from the excellent article by Panayotis Matsinopoulos for setting up a multi-language interface -
 
Allow users to select the user interface language in your ASP.NET Web application
 
I went to debug it using the built-in debugger in Visual Studio (VS) and received an error that the class module cannot be loaded. I know it is finding the module because if I move it to a different location in my project, it specifies that it cannot find the module.
 
This got me thinking about the whole subject of httpModules and their deployment on a localhost webserver and also use in VS debugging and I now have the following questions as a new and aspiring .NET programmer -
 
1. Does using the VS debugger make a difference? Does for example the module need to be registered separately ahead of time somehow on the localhost? Does it make a difference that the web.config file, the class module for the LanguageModule and the page itself (as well as the App_GlobalResources files) are all inside the same VS project?
2. Does the httpModule need to be registered separately on the local IIS for the application? I mean, I'm sure it needs to be so registered if I am running the application in a browser outside of Visual Studio, - but what about from within VS using the debugger? Doesn't the built-in compiler in the Debugger handle this (registration)?
3. If none of the above are issues in using the VS debugger, how can I go about debugging why the module won't load?
 
Thanks everyone for your assistance. I hope this isn't too much of a newbie question for the esteemed company!
Best Regards,
 
Ray Fischer, Kibo, Germany

Microsoft Office Excel cannot access the file

$
0
0
I am getting this while import and exporting data to Excel file
 
Quote:
Microsoft Office Excel cannot access the file 'C:\usr\SVN\ePROM\EffOnePMA\Files\QuestionStructure.xls'.
 
There are several possible reasons:
• The file name or path does not exist.
• The file is being used by another program.
• The workbook you are trying to save has the same name as a currently open workbook.

Here I am Attacheing my code
privatevoid DownLoadStrcture()
        {
            Excel.Application xlApp;
            Excel.Workbook xlWorkBook;
            Excel.Workbook xlTempWorkBook;
            Excel.Worksheet xlWorkSheet;
            Excel.Range range;
            range = null;
            int rCnt = 2;
            int cCnt = 2;
            string str;
            string fname = "QuestionStructure.xls";
            string Filepath = Server.MapPath("~/Files/" + fname);
            string TempFilename = "QuestionStructure_ " + Convert.ToInt32(Session[PageBase.SESSION_USER_ID]) + ".xls";
            string TempFilepath = Server.MapPath("~/Files/Temp/" + TempFilename);
            string dep = ddlDepartment.SelectedItem.Text.ToString();
            string area = ddlArea.SelectedItem.Text.ToString();
            string category = ddlCategory.SelectedValue != "-1" ? ddlCategory.SelectedItem.Text : "";
            string subCategory = ddlSubCategory.SelectedValue != "-1" ? ddlSubCategory.SelectedItem.Text : "";
 
            xlApp = new Excel.Application();
            xlWorkBook = xlApp.Workbooks.Open(Filepath, 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
            xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
            range = xlWorkSheet.UsedRange;
            File.Copy(Filepath, TempFilepath);
 
            xlWorkBook.Close();
            xlApp.Quit();
            releaseObject(xlWorkSheet);
            releaseObject(xlWorkBook);
            releaseObject(xlApp);
 
            xlApp = new Excel.Application();
            xlTempWorkBook = xlApp.Workbooks.Open(TempFilepath, 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
            xlWorkSheet = (Excel.Worksheet)xlTempWorkBook.Worksheets.get_Item(1);
            range = xlWorkSheet.UsedRange;
 
            str = (string)(range.Cells[rCnt, cCnt] as Excel.Range).Value2;
            string[] stringArray = newstring[] { dep, area, category, subCategory };
            for (int i = 0; i < stringArray.Length; i++)
            {
                (range.Cells[rCnt, cCnt] as Excel.Range).Value2 = stringArray[i].ToString();
                str = (string)(range.Cells[rCnt, cCnt] as Excel.Range).Value2;
                rCnt++;
            }
            xlApp.DisplayAlerts = false;
            xlApp.ScreenUpdating = false;
            xlApp.Visible = false;
            xlApp.UserControl = false;
            xlApp.Interactive = false;
            string Deletefilepath = Server.MapPath("~/Files/Temp/");
            if (File.Exists(Deletefilepath + TempFilename))
                File.Delete(Deletefilepath + TempFilename);
 
            xlTempWorkBook.Close(SaveChanges: true);
            Marshal.ReleaseComObject(xlTempWorkBook);
            xlApp.Quit();
            GC.Collect();
            GC.WaitForPendingFinalizers();
            Marshal.FinalReleaseComObject(xlTempWorkBook);
            Marshal.FinalReleaseComObject(range);
            Marshal.FinalReleaseComObject(xlApp);
            
        }

controls in ASP.Net

$
0
0
Hello Guys,

I am new to .Net could you please tell me what are the controls used in ASAP.Net ?
 
Thanks,
Vani

iss problem in windoms xp

$
0
0
webpage is published successfully in windoms xp iss.... but page is not redirect another page when it call....... any one solve this problem to me .. i ready to pay for you 1000RS...... contact me if you know solution for this.. dineshk61@gmail.com

Web Application

$
0
0
Hi code project world!
 
My Question is that :
I have written a "web application" via ASP.net 2008 and SQL database 2008.
I wanna use this source for multiple websites with different Master pages and CSS.
1) what is the simplest way/Solution to do that ?
2) if i change the main source code (one will be the main that i make changes to that) how can update other websites that uses this code(but with different Master pages and CSS)?
 
Thanks is advanced!

Credit Card Processing using Paypal

$
0
0
Hi all,
 
I need to integrate the Paypal for online credit Card processing .
 
I dont have pervious experience of integrating paypal . can any body share the ideas
 
Regards,

Creating WCF client using svcutil.exe

$
0
0
Hi,
 
I had been given a WCF service endpoint for net.tcp and http binding both. I want to generate proxy for this wcf service. But when I am running the svcutil from VS command prompt as administrator, it is giving me the below errors.
 
When I run the
C:\Windows\system32>svcutil.exe /language:vb /out:D:\WSDLRepository-Proxy\DocRetrieveService\DocRetrieveService.vb /config:D:\source\SourceCode\StayatWork-VS2010\BusinessLogicLayer\app.config http://xxxxxxtumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl
command
 
I am getting the below error
 
WS-Metadata Exchange Error
    URI: http://xxxxxtumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl
 
    Metadata contains a reference that cannot be resolved: 'http://lnidaptumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl'.
 
    <?xml version="1.0" encoding="utf-16"?><Fault xmlns="http://www.w3.org/2003/05/soap-envelope"><Code><Value>Sender</Value><Subcode><Value xmlns:a="http://www.w3.org/2005/08/addressing">a:ActionNotSupported</Value></Subcode></Code><Reason><Text xml:lang="en-US">The message with Action 'http://schemas.xmlsoap.org/ws/2004/09/transfer/Get' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver.  Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None).</Text></Reason></Fault>
 

HTTP GET Error
    URI: http://xxxxxtumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl
 
    The document was understood, but it could not be processed.
  - The WSDL document contains links that could not be resolved.
  - There was an error downloading 'http://localhost:8000/FilenetDocRetrieve/DocRetrieveService?wsdl=wsdl0'.
  - Unable to connect to the remote server
  - No connection could be made because the target machine actively refused it 127.0.0.1:8000
 
If you would like more help, type "svcutil /?" 
 
But when I run the
 
svcutil.exe /language:vb /out:D:\WSDLRepository-Proxy\DocRetrieveService\DocRetrieveService.vb /config:D:\source\SourceCode\StayatWork-VS2010\BusinessLogicLayer\app.config http://lnidaptumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl
Command 
 
I am getting the following error
 
Error: An error occurred in the tool.
 
Error: The given path's format is not supported.
 
Can anybody please help me in resolving it, I want to generate a proxy for my wcf clinet without using add service reference.
Because I dont want to make my client environment dependant. Any link or any kind help is great. Its urgent please help me.
Thanks & Regards,
 
Abdul Aleem Mohammad
St Louis MO - USA

Creating WCF client proxy using svcutil.exe

$
0
0
Hi,
 
I had been given a WCF service endpoint for net.tcp and http binding both. I want to generate proxy for this wcf service. But when I am running the svcutil from VS command prompt as administrator, it is giving me the below errors.
 
When I run the
C:\Windows\system32>svcutil.exe /language:vb /out:D:\WSDLRepository-Proxy\DocRetrieveService\DocRetrieveService.vb /config:D:\source\SourceCode\StayatWork-VS2010\BusinessLogicLayer\app.config http://xxxxxxtumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl
command
 
I am getting the below error
 
WS-Metadata Exchange Error
    URI: http://xxxxxtumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl
 
    Metadata contains a reference that cannot be resolved: 'http://lnidaptumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl'.
 
    <?xml version="1.0" encoding="utf-16"?><Fault xmlns="http://www.w3.org/2003/05/soap-envelope"><Code><Value>Sender</Value><Subcode><Value xmlns:a="http://www.w3.org/2005/08/addressing">a:ActionNotSupported</Value></Subcode></Code><Reason><Text xml:lang="en-US">The message with Action 'http://schemas.xmlsoap.org/ws/2004/09/transfer/Get' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver.  Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None).</Text></Reason></Fault>
 

HTTP GET Error
    URI: http://xxxxxtumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl
 
    The document was understood, but it could not be processed.
  - The WSDL document contains links that could not be resolved.
  - There was an error downloading 'http://localhost:8000/FilenetDocRetrieve/DocRetrieveService?wsdl=wsdl0'.
  - Unable to connect to the remote server
  - No connection could be made because the target machine actively refused it 127.0.0.1:8000
 
If you would like more help, type "svcutil /?" 
 
But when I run the
 
svcutil.exe /language:vb /out:D:\WSDLRepository-Proxy\DocRetrieveService\DocRetrieveService.vb /config:D:\source\SourceCode\StayatWork-VS2010\BusinessLogicLayer\app.config http://lnidaptumecr21:8000/FilenetDocRetrieve/DocRetrieveService?wsdl
Command 
 
I am getting the following error
 
Error: An error occurred in the tool.
 
Error: The given path's format is not supported.
 
Can anybody please help me in resolving it, I want to generate a proxy for my wcf clinet without using add service reference.
Because I dont want to make my client environment dependant. Any link or any kind help is great. Its urgent please help me.
Thanks & Regards,
 
Abdul Aleem Mohammad
St Louis MO - USA

how to preview a word file before you download it?

$
0
0
requires:
:~neither use the plugin of flexpapper nor the MS's office component

best way to send bulk SMS

$
0
0
Hi,
 
I would like to ask what's the best way to send bulk SMS? if you had an option from the following, which one you'll choose and why please?
 
HTTP/S, FTP, SMPP, XML, SOAP, SMTP or COM object
 
Thanks,
 
Jassim
 
http://www.JassimRahma.com[^]

 
Technology News @ www.JassimRahma.com

Try Catch

$
0
0
Hey i wanna start a discussion on try catch blocks. I read a lot of conflicting opinions on wether or not to use them and where or where not to use them, I just want a diffinative answer. Cheers.
Viewing all 3938 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>