TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ben
NA
1
2.6k
aspx c# fill variable in loop foreach
Apr 5 2013 3:28 AM
Hi,
i tried to fill a variable in a loop foreach
<%
@
Page language
=
"c#"
Codebehind
=
"syncer.aspx.cs"
AutoEventWireup
=
"True"
%>
<%
@
Import
Namespace
=
"System"
%>
<%
@
Import
Namespace
=
"System.Data"
%>
<%
@
Import
Namespace
=
"System.Data.SqlClient"
%>
<%
@
Import
Namespace
=
"System.Data.OleDb"
%>
<%
@
Import
Namespace
=
"System.Xml"
%>
<%
@
Import
Namespace
=
"System.Xml.Serialization"
%>
<%
@
Import
Namespace
=
"System.IO"
%>
<%
@
Import
Namespace
=
"System.Net"
%>
<%
@
Import
Namespace
=
"System.Text"
%>
<%
@
Import
Namespace
=
"System.Runtime.Serialization.Json"
%>
<%
String a
;
a
=
Request
.
QueryString
.
Get
(
"todo"
)
;
if
(
a
==
"sync"
){
string url
=
Request
.
Url
.
GetLeftPart
(
UriPartial
.
Path
)
;
Response
.
Write
(
url
)
;
string strData
=
url
;
char
[]
separator
=
new
char
[]
{
'/'
}
;
string
[]
strSplitArr
=
strData
.
Split
(
separator
)
;
string resser
;
foreach
(
string arrStr in strSplitArr
)
{
if
(
arrStr
!=
"AssistAplDataBtrApplyTransport.aspx"
){
resser
+=
arrStr
;
}
else
{
}
}
Response
.
Write
(
resser
)
;
}
else
{
}
%>
but i get the following error:
Serverfehler in der Anwendung /WebService.
Kompilierungsfehler
Beschreibung: Fehler bei der Kompilierung einer Ressource, die zur Verarbeitung dieser Anforderung erforderlich ist. Überprüfen Sie die folgenden spezifischen Fehlerdetails, und ändern Sie den Quellcode entsprechend.
Compilerfehlermeldung: CS0165: Verwendung der nicht zugewiesenen lokalen Variablen resser
Where is my false?
Reply
Answers (
1
)
asp.net related paypal
what are dump options in .net generated before assembly